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

https://github.com/simran1002/note-service-api

Node.js-based RESTful API leveraging Express and Mongoose for robust note management. Features include CRUD operations, basic authentication for security, making it an ideal backend for scalable applications.
https://github.com/simran1002/note-service-api

Last synced: over 1 year ago
JSON representation

Node.js-based RESTful API leveraging Express and Mongoose for robust note management. Features include CRUD operations, basic authentication for security, making it an ideal backend for scalable applications.

Awesome Lists containing this project

README

          

## Note-Service-API

## Getting Started
### Prerequisites
- [Node.js](https://nodejs.org/en/)

### How to run
1. Clone the repository
```bash
git clone https://github.com/simran1002/Note-Service-API.git
```

2. Open the project directory
```bash
cd Note-Service-API
```

3. Install dependencies
```
npm install
```

4. Add a .env file to the root directory with the following variables
```
DB_URI=
PORT=3000
```

5. Run the server
```
npm start
```
or to run in development mode
```
npm run dev
```