Manage your saved posts on Reddit 🤩
- Next.js using my boilerplate
- Serverless (JS Lambdas)
I mainly created this project to keep my React skills sharp as much of my work revolves around using Angular. This project also gave me more experience in working with serverless technologies which is all the rage right now. Along the way, I learned about Reddits API & about other libraries such as react-infinite-scroll-component, styled-components and of course react-redux.
- Reddit login without entering your password
- View/Unsave saved posts & saved comments
- Filter through saved content
- Light/Dark Theme
- Infinite Scroll
- Create a
.env
file in the lambdas directory with the followinhg content
you'll need to register a new app with Reddit to get a Client_ID & Client_Secret - https://ssl.reddit.com/prefs/apps/
CLIENT_ID='your_id'
CLIENT_SECRET='your_secret'
REDIRECT_URI='http://localhost:3000/'
npm install
at the root directory & the lambdas directory- install serverless & in the lambdas directory run
sls offline
- at the root directory run
npm start