https://github.com/beebombshell/memories-mern
https://github.com/beebombshell/memories-mern
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/beebombshell/memories-mern
- Owner: BeeBombshell
- Created: 2022-07-09T08:57:11.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2022-07-18T16:43:23.000Z (almost 4 years ago)
- Last Synced: 2025-10-08T14:45:14.634Z (9 months ago)
- Language: HTML
- Size: 331 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Memories :star2:
*Tech Stack Used: React, Node, Express, MongoDB*
## Introduction :bookmark_tabs:
Memories is a full stack social media MERN application.
Memories allows users to post and share their memories and interesting events in their lives.
## For Client side :bookmark_tabs:
Initialize a React App
> yarn create-react-app ./
:bookmark: Installing the dependencies:
- `axios` => for making API requests
- `moment` => for time and dates
- `react-file-base64` => To convert images
- `redux`
- `redux-thunk` => for async actions using redux
## For Server side :open_file_folder:
use the command to initialize the an empty package.json:
> npm init -y
:bookmark: Installing the dependencies:
- `body-parser` => To enable us to send post requests
- `cors` => To enable cross-origin requests
- `express` => Express framework for routing of the application
- `mongoose` => MongoDB modules for our posts
- `nodemon` => To refresh the server everytime we make a change in the code