Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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`.