Handling the Asynchronous Nature of Node.js: Sample Project

Node.js is built on top of Google’s V8 engine, which in turns compiles JavaScript. JavaScript is asynchronous in nature. Asynchronous is a programming pattern which provides the feature of non-blocking code i.e do not stop or do not depend on another func… Read more

Similar

Using the GitHub GraphQL API with Node.js

As of API v4 Github is using GraphQL as a query language for their API. This gives the users more power and flexibility to ask exactly what they need from the API (it also gives you more public data compared to API v3, such as closed issues count). (more…)

Read more »