euljr / nmc-ha1

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Node.js Master Class - Homework Assignment #1

This is a simple pure Node.js API for the The Node.JS Master Class course Homework Assignment #1

Usage examples

GET /hello

Response:

    200 - Success
    { "message": "Hello World!" }

GET /hello?name=Euler

Response:

    200 - Success
    { "message": "Hello Euler!" }

POST /hello

Request:

    { "name": "Euler" }

Response:

    200 - Success
    { "message": "Hello Euler!" }

PUT /hello

Response

    405 - Method not allowed

GET /anything

    404 - Not found

About


Languages

Language:JavaScript 100.0%