April 2018
Beginner
226 pages
4h 47m
English
What is an API? To put it simply, an application programming interface is a way in which we can access our application data and present it in a desired format. The API implementation grants access to its data via application requests. It can be an HTTP request or FTP. With respect to the context of our book, we are going to learn about HTTP requests.
A request basically consists of the following:
An API server provides an endpoint URL so that we can access the required info through our client, for instance, a browser. In the preceding chapters, we have already seen how node.js implements an API server with its basic core.
Let's see how hapi implements ...
Read now
Unlock full access