Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
March 9, 2021 11:01 am GMT

Quickly and easily mock a REST API with Restapify

Hey devs

Often when you start developing a new frontend project that consume a REST API, the backend is not yet ready. However, very often this one is at first basic and you only want to receive faked data to see how the application behaves. That's when you decide to use a tool to mock your API like postman or library like json-server, mocker-api or http-fake-backend. These tools are really good but there still have some negative points. Postman for example is not entirely free to use and needs to login, mocker-api define all routes in a single javascript file and json-server is at some point very restrictive for edge-cases.

So I decided to work on a new API mocker tool that should be able to handle all cases and that within a nice developer experience flow: Restapify.

Restapify is a nodejs based CLI that allows you to quickly and easily deploy a local REST API by using an intuitive and developer friendly JSON file structure like you will see in NextJS or Sapper. Lets describe how it works by creating a simple mocked API that should serve the following:

GET  /meGET  /postsGET  /usersGET  /users/:useridPOST /users/:useridDEL  /users/:useridGET  /users/:userid/comments

Create the endpoints

The starting point is the creation of the folder that will contain your route json file, I will call it /api. Then we can add some routes to be serve. Creating a route means to add a .json file where its filename describe the endpoint, the method and the status code and its content the response body. So to create the GET /me endpoint with the status code 200 just create the following file:

 api  me.GET.200.json

Since GET and 200 are the default value for the method and the status code, you can simplify the filename to:

 api  me.json

The response should contain a firstname, a lastname and an email, so the file content of /api/me.json would be something like:

{  "firstname": "Janie",  "lastname": "Hermann",  "email": "[email protected]"}

Then lets add the endpoints for /users. Since there are a few of them we can group them in the same folder users

 api  users   *.json   [userid]    *.json    *.POST.201.json    *.DELETE.201.json  me.json

The folder [userid] indicate that this route is dynamic. You can then in the JSON file content consume this variable by using the syntax [userid]. Example in the file /api/users/[userid]/*.json:

{  "id": "[userid]",  "email": "[email protected]"}

If you call then GET /users/42 you will get the response:

{  "id": "42",  "email": "[email protected]"}

Here to get the id as a number, just cast the variable by using the syntax n:[var] like "id": "n:[userid]". Variable casting docs

Restapify provide a syntax to use the famous fakerjs library to easily populate your response's body (checkout the docs):

{  "firstname": "[#faker:name:firstName]",  "lastname": "[#faker:name:lastName]",  "email": "[#faker:internet:email]"}

You can also easily create a waste amount of data by using the for-loop syntax. So if you want to get 10 comments with the request GET /users/:userid/comments just write this in the JSON file /api/users/[userid]/comments.json:

[  "#for i in range(10)",  {    "id": "n:[i]",    "creatorId": "n:[userid]",    "content": "[#faker:lorem:sentences]"  },  "#endfor"]

So now we have created all the endpoints of the API that send a succeeded response. But what if we want to test the behaviour of the application when the user doesn't exist in GET /users/:userid for example. A real API would probably return a 404 without any content. To mock this behaviour, Restapify implement the concept of endpoint states. To do this you just have to create a new file for each different state by adding at the end of the file the syntax {STATE_NAME} separated by a dot. So lets create a new state for GET /users/:userid:

 api  users   [userid]    *.json    *.404.{NOT_FOUND}.json

To return no-content in Restapify you have to use this syntax as file content:

[null]

An empty file would be more convenient but it's not valid for a JSON file according to the ECMA-404 standard.

Now that you have created your endpoints, it's time to serve the mocked API. For that install the Restapi CLI...

yarn global add restapify # or npm install -g restapify

...and then serve the api/ folder:

restapify serve api/

It will then open a dashboard in your browser that give you an overview of the mocked API.

dashboard screenshot

You can in this dashboard consult the endpoints and their content, fetch them and more important select which state of the endpoints you want to serve.

So if you click on the state button NOT_FOUND, it will update the API to serve this state of the endpoint, so if you directly after request GET /users/42 you will receive a 404. This is really helpful to test your frontend (for example a login forms) and you can create so much several state as you want to fit all you need and edge cases.

So I presented the most important features of Restapify but I really encourage you to check the official documentation of it to see other use cases like query string, route variable in for-loops or the fakerjs integration in more details.

You can find some prepared examples of mocked API in https://restapify.vercel.app/examples so that you can directly play and see how it feel. If you have any question or feedback feel free to post it in the discussion and if you want to checkout the source code, here is the GitHub repository:

GitHub logo johannchopin / restapify

Quickly and easily deploy a mocked REST API

Have a good day


Original Link: https://dev.to/johannchopin/quickly-and-easily-mock-a-rest-api-with-restapify-16om

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To