https://github.com/moonjose/friendlist_js
A friendlist (CRUD) using express and MongoDB
https://github.com/moonjose/friendlist_js
Last synced: 9 months ago
JSON representation
A friendlist (CRUD) using express and MongoDB
- Host: GitHub
- URL: https://github.com/moonjose/friendlist_js
- Owner: Moonjose
- Created: 2022-07-11T16:56:27.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-07-11T17:05:50.000Z (over 3 years ago)
- Last Synced: 2025-01-25T16:45:40.217Z (10 months ago)
- Language: JavaScript
- Size: 415 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Friendlist CRUD
Creating a friendlist (CRUD) with node, express and MongoDB
Express Version
4.18.1
Database
MongoDB (using mongoose)
## Initial settings to run the project
```bash
# clone the project
git clone https://github.com/Moonjose/Friendlist_JS.git
# enter the cloned directory
cd Friendlist_JS
# install dependencies
npm install
# create a .env file with your MongoDB cluster link
CONNECTIONSTRING=
# run server
npm start
# run webpack watch in another terminal
npm run dev
The app is available at `http://localhost:3000`.