RESTful web APIs are typically loosely based on HTTP methods to access resources via URL-encoded parameters and the use of JSON or XML to transmit data. RESTful Web services are one way of providing interoperability between computer systems on the Internet. Rest API helps to communicate betwee [...]
Category: Node JS
CRUD stands for Create, Read, Update and Delete. It is a set of operations we get servers to execute (POST, GET, PUT and DELETE respectively). Create means inserting data into the database using INSERT SQL statement. Read means reading data from the database using SELECT SQL statement. Update [...]