https://github.com/markbrown4/hapi-api
A sitepoint tutorial for Building JSON API's with Hapi
https://github.com/markbrown4/hapi-api
Last synced: 2 months ago
JSON representation
A sitepoint tutorial for Building JSON API's with Hapi
- Host: GitHub
- URL: https://github.com/markbrown4/hapi-api
- Owner: markbrown4
- Created: 2018-01-14T21:23:06.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-01-15T06:37:15.000Z (over 7 years ago)
- Last Synced: 2025-01-19T23:38:56.029Z (4 months ago)
- Language: HTML
- Size: 26.4 KB
- Stars: 1
- Watchers: 2
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# hapi-api
A tutorial for Sitepoint on [building JSON API's with Hapi]().
> Today, we'll be building the following API for a typical blog from scratch:
```
GET /articles articles#index
GET /articles/:id articles#show
POST /articles articles#create
PUT /articles/:id articles#update
DELETE /articles/:id articles#destroy
POST /articles/:id/comments comments#create
DELETE /articles/:id/comments comments#destroy
POST /authentications authentications#create
```