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.
- Host: GitHub
- URL: https://github.com/simran1002/note-service-api
- Owner: simran1002
- Created: 2024-01-01T17:46:27.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-01-03T18:17:41.000Z (over 2 years ago)
- Last Synced: 2025-01-21T13:51:50.108Z (over 1 year ago)
- Language: JavaScript
- Homepage:
- Size: 20.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```