ezioguga/hyf-homework-nodejs-3

First REST method

Opened this issue · 0 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.*