Tag: api
-
Things to consider when creating new service in Microservices
How RESTful services in Microservices architecture can be more efficient. Here is the list of the things I would consider while planning for a new API service. Each RESTful service should have a wellโdefined boundary. Individual services should be simple, faster to develop, and easier to understand and maintain.
-
Calling APIs from Javascript/Node.js
This is one of the most common things nowadays developers are doing more than before. Raise of Microservices based architecture and distributed software development needs more inter-service communication i.e more codes for API consuming stuff, sometimes more than actual business logic. It is good that business logic coding is now less redundant. Consuming API with…