https://github.com/matheuseabra/minimal-nodejs-starter
A minimal Node.js API with JWT auth and a simple user web-service, ideal for starter projects.
https://github.com/matheuseabra/minimal-nodejs-starter
boilerplate express jest jwt minimal nodejs
Last synced: 2 months ago
JSON representation
A minimal Node.js API with JWT auth and a simple user web-service, ideal for starter projects.
- Host: GitHub
- URL: https://github.com/matheuseabra/minimal-nodejs-starter
- Owner: matheuseabra
- License: mit
- Created: 2018-10-17T20:30:01.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2023-01-24T01:34:24.000Z (over 3 years ago)
- Last Synced: 2023-03-05T23:59:51.067Z (over 3 years ago)
- Topics: boilerplate, express, jest, jwt, minimal, nodejs
- Language: JavaScript
- Homepage:
- Size: 1.69 MB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 17
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Minimal Node.js API Starter

A minimal Node.js API with JWT auth and a simple user web-service, ideal for starter projects
## Features
- User registration
- User authentication
- User editing
- User removal
* Express as Node web server
* Mongoose for object modeling and schemas
* MongoDB as data storage
* JWT Auth as authentication strategy
## Running locally
Install dependencies:
```javascript
npm install // or
yarn install
```
Start the server:
```javascript
npm start
yarn start
```
## Author
This project was written by Matheus Seabra