Node.js

Node.js: how to create and serve a JSON Web Token (JWT) with ExpressJS

In Node.js, one can create and serve a JWT using the jsonwebtoken module together with the ExpressJS framework.

May 1, 2023
Node.js

Node.js: how to generate a CSR and a private key

In Node.js, you can generate a CSR (Certificate Signing Request) and RSA private key using the built-in crypto module.

April 29, 2023
Node.js

Node.js: parsing an XML file

Parsing an XML file with Node.js can be done in a number of ways, but one of the most common is through the use of the xml2js npm module.

April 27, 2023
Node.js

Node.js: parsing a YAML file

Parsing a YAML file with Node.js can be a very useful operation when working with structured data in YAML format.

April 27, 2023
Node.js

Node.js: how to send requests to a SOAP web service

To send a request to a web service in SOAP with Node.js, we need to follow some basic steps.

April 8, 2023
Node.js

Node.js: how to send a request to a web service in SOAP

To send a request to a web service in SOAP with Node.js, you need to follow some basic steps.

March 27, 2023