https://github.com/anvk/express-boilerplate
My boilerplate for REST webservices
https://github.com/anvk/express-boilerplate
api api-server boilerplate express microservice
Last synced: about 1 month ago
JSON representation
My boilerplate for REST webservices
- Host: GitHub
- URL: https://github.com/anvk/express-boilerplate
- Owner: anvk
- Created: 2015-10-19T23:04:23.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-06-03T14:50:37.000Z (almost 9 years ago)
- Last Synced: 2025-02-03T12:49:02.219Z (3 months ago)
- Topics: api, api-server, boilerplate, express, microservice
- Language: JavaScript
- Size: 10.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Express Boilerplate
========> My boilerplate for REST webservices
## How to build:
1. Install Node
2. Install NPMTo install packages
```
npm install
```## To start webservice
```
npm start
```OR
```
node app.js [port] [process title] [process.pid file]
```## To run tests
```
npm test
```## Different branches:
* master - web service with a static token (for private APIs)
* jwt - web service with JWT tokens (for public APIs)
* access - (TBD) web service with custom Access and Read/Write permissions (for advanced public APIs)## License
MIT license;