View deleted stuff from reddit
Find a file
2019-12-05 09:57:50 +01:00
dist Added 'you are vering a single comment' and link to full thread 2018-08-09 03:22:45 +02:00
src Updated depedencies 2019-12-05 09:57:50 +01:00
.babelrc Updated depedencies 2019-12-05 09:57:50 +01:00
.gitignore Added status messages for threads and about page 2018-07-28 22:32:28 +02:00
LICENSE Updated license 2018-02-18 01:31:59 +01:00
package-lock.json Updated depedencies 2019-12-05 09:57:50 +01:00
package.json Updated depedencies 2019-12-05 09:57:50 +01:00
README.md Update README.md 2018-08-04 07:11:28 +02:00
TODO Added 'you are vering a single comment' and link to full thread 2018-08-09 03:22:45 +02:00
webpack.config.js Removed source-maps from production builds 2018-07-28 23:46:19 +02:00
yarn.lock Updated removal/deletion detection to match reddit API changes 2018-08-08 11:22:55 +02:00

Removeddit

Removeddit is a site for viewing removed comments / threads from Reddit. Just go to any reddit thread and change the reddit in the URL to removeddit to see all removed comments.

This is a done by comparing the comments being stored in Jason Baumgartners Pushshift Reddit API and the ones from Reddit API. The frontend is written in React and uses Sass as the CSS Preprocessor. There is also a seperate backend used for storing what threads that have been removed by mods.

Development

Download either Yarn (the one I use) or npm

sudo git clone https://github.com/JubbeArt/removeddit.git && cd removeddit

# npm...
npm install
npm start

# or yarn
yarn
yarn start

This will build the Javascript files and launch a local server for development. Visit http://localhost:8080 and make sure the site is running.

The CSS is build seperatly (to keep the build steps / configs very simple) by running

# npm
npm run build-sass

# yarn
yarn run build-sass