tomeryp / hyf-homework-nodejs-3

Home Page:https://lab.github.com/M3kH/create-rest-server-with-nodejs-and-express

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

First REST method

github-learning-lab opened this issue · comments

Create a User REST Interface

Representational State Transfer is a software style,
that allows to create API (Access Program Interface); to consume
our builded Logic consistently.

For this exercise we would create an API that can allow people to create Users in a system and retrieve his informations.

So formally we would create a story that could look like:

  As Developer
when create a GET request at /users
then I will recieve a list of users.

So to close this issue you would need to:

  • Create a Pull Request
  • Create the Endpoint GET /users and make the test pass.

Remember that the list of User is empty.*