Skip to content
This repository was archived by the owner on Sep 13, 2021. It is now read-only.

sirnobrain/restfull-api

 
 

Repository files navigation

RESTful API DEMO

Demo app with basic REST API. URL: rest-bamkurniawan-livelyfox.herokuapp.com

REST API

List of basic routes:

Route HTTP Description
/api/hello?name={name} GET Print hello, {name} !

List of user routes:

Route HTTP Description
/api/users GET Print hello, {name} !
/api/users/:id GET Get a single user
/api/users/ POST Create a user
/api/users/:id DELETE Delete a user
/api/users/:id PUT Update a user with new info
/api/users/:id PATCH Update a user with specific new info

List of filter routes:

Route HTTP Description
/api/users?name="{name}" GET Get {name} match in users
/api/users?name="{na}" GET Get {na} like in users

Usage

with only npm:

npm install
npm start
npm run dev

Access the website via http://localhost:3000 or API via http:localhost:3000/api

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • JavaScript 96.7%
  • HTML 2.4%
  • CSS 0.9%