Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/moonjose/friendlist_js
A friendlist (CRUD) using express and MongoDB
https://github.com/moonjose/friendlist_js
Last synced: about 2 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 2 years ago)
- Default Branch: main
- Last Pushed: 2022-07-11T17:05:50.000Z (over 2 years ago)
- Last Synced: 2023-03-04T14:49:06.149Z (almost 2 years 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 devThe app is available at `http://localhost:3000`.