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

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

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
```