MongoDB, Expressjs, React/Redux, Nodejs
Memories app is a website where people can share their memories in the form of a post and others can view and react to their post.
$ git clone https://github.com/ishanc008/Memories-App.git
$ npm i
.gitignore
Backend/
package.json
server.js
...
...
Frontend/
package.json
index.html
index.js
App.js
...
...
Notice, you need client and server runs concurrently in different terminal session, in order to make them talk to each other
$ cd Frontend // go to client folder
$ npm i // npm install pacakges
$ npm start // run it locally
run the script at the first level:
(You need to add a SECRET in .env to connect to MongoDB)
// in the root level
$ echo "SECRET=YOUR_JWT_SECRET" >> ./Backend/.env
$ cd Backend // go to server folder
$ npm i // npm install pacakges
$ node server.js // run it locally
| Frontend | Backend |
|---|---|
| axios: ^0.21.1 | bcryptjs: ^2.4.3 |
| redux-thunk: ^2.3.0 | express: ^4.17.1 |
| redux: ^4.1.0 | cors: ^2.8.5 |
| react: ^17.0.2 | dotenv: ^8.2.0 |
| react-dom: ^17.0.2 | mongoose: ^5.12.5 |
| react-redux: ^7.2.4 | jsonwebtoken: ^8.5.1 |
| react-router-dom: ^5.2.0 |
Create new Issues (preferred)
Email Me: ishanc008@gmail.com



