https://github.com/potatogopher/express-tutorial
https://github.com/potatogopher/express-tutorial
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/potatogopher/express-tutorial
- Owner: potatogopher
- Created: 2016-06-29T20:19:14.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2016-06-30T05:16:08.000Z (about 10 years ago)
- Last Synced: 2025-03-21T22:13:19.343Z (over 1 year ago)
- Language: JavaScript
- Size: 1.95 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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'
```