Confirmed this project still works. However the free tier of Heroku this was hosted on is no longer available. I am no longer working on this project and thus there are no plans to rehost.
https://reddit-saved-app.herokuapp.com
Table of Contents
This tool lets Reddit users access all of their saved posts or comments on one page. This was meant to solve the problem of manually scrolling through ~25 items at a time with the Reddit website. In addition to viewing your post/comments, there is the ability to un-save them directly from the app. Users are authenticated with OAuth2 for 1 hour with relevant score. I have this code hosted on a small and slow heroku instance here : https://reddit-saved-app.herokuapp.com. Please feel free to open a PRs for any improvement!
- Snoowrap - JS Reddit API wrapper
- Handlebars - Templating engine
- Node.js/Express - Backend
After authenticating users will be able to:
- see all your saved items on one page
- see how exactly how many posts or items you have
- follow a link to the item
- un-save an item
If you don't trust the website and/or want to mess with things locally, please feel free to clone the repo! Use the below steps to get up and running
- Clone the 'Master' branch and navigate to it.
git clone git@github.com:collinco/SavedRedditInterface.git
cd SavedRedditInterface
-
Run
npm install
to get necessary packages. -
Create a Reddit app using your profile here : https://www.reddit.com/prefs/apps/. Make sure you set the redirect URI to your server
-
Create a config.js file with your Reddit App details. put it in the root directory where app.js is.
var config = {};
config.userAgent = "A Computer";
config.clientId = "d1OayiDXkXFby";
config.clientSecret = "2lunMerjKDS9syW-5OWYagDKJUsY";
module.exports = config;
- run
node app.js
to start the server.
- the 'Master' branch is what should be downloaded if someone wants the code since it is missing the Heroku environment variables.
- the 'Heroku' branch is what is currently on the website hosted by Heroku. It is redeployed after new commits are pushed to 'Heroku'.
Possible improvements:
- ability to minimize comments and posts sections
- better/lazy loading
- revamp design, very basic currently
- display user's account name
This project is licensed under the MIT License - see the LICENSE.md file for details