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

https://github.com/potatogopher/express-tutorial


https://github.com/potatogopher/express-tutorial

Last synced: 3 months ago
JSON representation

Awesome Lists containing this project

README

          

# express-tutorial

Basic starter-kit for new node-express users

## Install
```sh
git clone git@github.com:potatogopher/express-tutorial
cd express-tutorial

# install dependencies
npm install

# start application
node app.js
```

## Endpoints
```js
GET '/'

GET '/cats'
POST '/cats'
```