Implementing the MVC Design Pattern in a Node.js Web Application
MVC is not a framework feature. It is a discipline. Node.js and Express give you the freedom to organize your code any way you like, and MVC is a particularly effective way to use that freedom.
Server-Sent Events with Node.js
Server-Sent Events offer a remarkably simple and effective way to push data from a Node.js server to the browser.
Building a simple TypeScript REST API with Node.js
Below we’ll walk through a practical TypeScript application in Node.js by creating a sample REST API that implements a basic CRUD model.
Managing an Amazon AWS EC2 Instance with Node.js
This guide provides a complete walkthrough for starting, stopping, rebooting, describing, and creating EC2 instances using Node.js and the AWS SDK for JavaScript v3.
GraphQL: an introduction
GraphQL offers a declarative, strongly typed, and composable model to expose data and orchestrate services.
Managing DOIs with Node.js: creation and metadata updates
With Node.js, it is possible to interface with DOI registration APIs (such as Crossref or DataCite) to create, update, and manage these identifiers. In this article, we will see how to generate and manage a DOI using Node.js.