Node.js

How To Use SQLite with Node.js on Ubuntu 22.04 — step-by-step Linux tutorial on Progressive Robot

How To Use SQLite with Node.js on Ubuntu 22.04

In this tutorial, readers will use node-sqlite3 to create a connection with an SQLite database. Next, they’ll create a Node.js app that creates a table and insert data into the database. Finally, they’ll modify the app to use node-sqlite3 to retrieve, update, and delete data from the database.

Read more
Installing and Configuring Graphite and Statsd on an Ubuntu 12.04 VPS — step-by-step Linux tutorial on Progressive Robot

Installing and Configuring Graphite and Statsd on an Ubuntu 12.04 VPS

This tutorial will cover how to set up Graphite and Statsd on your server. Graphite is a graphing library that can be used to plot data-sets in a visually appealing way. Statsd is a program that can collect data on your system. When these programs are combined, you can generate useful graphs that describe the trends of your server.

Read more
Comment mettre en place un projet Node avec Typescript — step-by-step Javascript tutorial on Progressive Robot

Comment mettre en place un projet Node avec Typescript

Écrire du JavaScript côté serveur peut être difficile à mesure qu’une base de code grandit.  TypeScript est un super-ensemble de JavaScript typé (facultatif) qui peut aider à construire et à gérer des projets JavaScript à grande échelle. Cela peut être considéré comme du JavaScript avec des caractéristiques supplémentaires comme un fort typage statique, une compilation et une programmation orientée objet.  Ce tutoriel explorera comment utiliser le framework [Express](https://expressjs.com/) avec

Read more
Using Buffers in Node.js — step-by-step Javascript tutorial on Progressive Robot

Using Buffers in Node.js

A buffer is a space in memory (typically RAM) that stores binary data. In Node.js, we can access these spaces of memory with the built-in Buffer class. Buffers are useful when using JavaScript to interacting with binary data, usually at lower networking levels. In this tutorial, you will use the Node.js REPL to create buffers, read from buffers, write to and copy from buffers, and use buffers to convert between binary data and data encoded with ASCII and UTF-8.

Read more
CHAT