Exécuter du JavaScript partout
Node.js® est un environnement d'exécution JavaScript gratuit, open-source et multiplateforme qui permet aux développeurs de créer des serveurs, des applications web, des outils en ligne de commande et des scripts.
Obtenir Node.js®Obtenir Node.js®Obtenir une aide à la sécurité
pour les versions Node.js en fin de vieNode.js est fièrement soutenu par les partenaires ci-dessus et bien d'autres encore.
pour les versions Node.js en fin de vieNode.js est fièrement soutenu par les partenaires ci-dessus et bien d'autres encore.
// server.mjs
import { } from 'node:http';
const = ((, ) => {
.(200, { 'Content-Type': 'text/plain' });
.('Hello World!\n');
});
// starts a simple http server locally on port 3000
.(3000, '127.0.0.1', () => {
.('Listening on 127.0.0.1:3000');
});
// run with `node server.mjs`// tests.mjs
import from 'node:assert';
import from 'node:test';
('that 1 is equal 1', () => {
.(1, 1);
});
('that throws as 1 is not equal 2', () => {
// throws an exception because 1 != 2
.(1, 2);
});
// run with `node tests.mjs`// crypto.mjs
import { } from 'node:crypto';
import { } from 'node:fs/promises';
const = ('sha1');
.('hex');
// ensure you have a `package.json` file for this test!
.(await ('package.json'));
.();
const = .();
// run with `node crypto.mjs`// streams.mjs
import { , } from 'node:fs';
import { } from 'node:stream/promises';
import { } from 'node:zlib';
// ensure you have a `package.json` file for this test!
await (
('package.json'),
(),
('package.json.gz')
);
// run with `node streams.mjs`// threads.mjs
import { , ,
, } from 'node:worker_threads';
if () {
const = 'some data';
const = new (import.meta., { : });
.('message', => .('Reply from Thread:', ));
} else {
const = ;
.((.toUpperCase()));
}
// run with `node threads.mjs`Apprenez-en plus sur ce que Node.js est capable d'offrir avec notre Matériel d'apprentissage.