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

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

Awesome Lists containing this project

README

        

Express Boilerplate
========

> My boilerplate for REST webservices

## How to build:

1. Install Node
2. Install NPM

To 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;