https://github.com/itzraman31/chatterbox
Chatterbox is a feature-rich social media application built using the MERN stack (MongoDB, Express.js, React, and Node.js). The application aims to provide users with an interactive platform to connect, share, and communicate seamlessly
https://github.com/itzraman31/chatterbox
css express html javascript mongodb mongoose nodejs react reactjs socket-io
Last synced: 3 months ago
JSON representation
Chatterbox is a feature-rich social media application built using the MERN stack (MongoDB, Express.js, React, and Node.js). The application aims to provide users with an interactive platform to connect, share, and communicate seamlessly
- Host: GitHub
- URL: https://github.com/itzraman31/chatterbox
- Owner: itzraman31
- Created: 2024-12-12T07:54:49.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-03-30T02:27:20.000Z (about 1 year ago)
- Last Synced: 2025-03-30T03:24:42.955Z (about 1 year ago)
- Topics: css, express, html, javascript, mongodb, mongoose, nodejs, react, reactjs, socket-io
- Language: JavaScript
- Homepage:
- Size: 55.5 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
--->>> For frontend
# move to frontend folder
cd Frontend
# install all dependencies.
npm i --force
# start the frontend
npm start
--->>> For backend
# now move to backend folder through another terminal in same folder
cd Backend
# install all dependencies.
npm i --force
# create a .env file in backend folder and add below configs.
<<<< ----- .env config starts here ---->>>>
mongodb=<<-- Your mongodb uri -->>
# JWT Signature
sign=<<-- Your JsonwebToken secret_signature -->>
port=<<-- port -->>
# Cloudinary configs
cloud_name=<<-- Your cloudinary name -->>
api_key=<<-- Your cloudinary api_key -->>
api_secret=<<-- Your cloudinary api_secret -->>
<<<< ----- .env config endups here ---->>>>
# start the backend server
npm start