Differences between revisions 6 and 10 (spanning 4 versions)
Revision 6 as of 2023-01-13 06:11:56
Size: 839
Comment:
Revision 10 as of 2025-12-19 21:15:07
Size: 753
Comment: Cleanup
Deletions are marked like this. Additions are marked like this.
Line 3: Line 3:
'''`node(1)`''' is a [[JavaScript]] interpretter. It comes with a standard library and a package manager. An extensive set of third-party modules are built upon this foundation. '''`node(1)`''' is a [[ECMAScript]] interpreter. It comes with a standard library and a package manager. An extensive set of third-party modules are built upon this foundation.
Line 27: Line 27:
== Installation ==

----

Line 37: Line 32:
 * [[Node/Npx|npx]]
 * [[Node/WebPack|WebPack]]
 * [[Node/React|React]]
 * [[Node/Webpack|Webpack]]
Line 43: Line 38:
== Standard Library == == Builtin Modules ==
Line 45: Line 40:
 * [[Node/Console|console]]
 * [[Node/Crypto|crypto]]
* [[Node/FS|fs]]
 * [[Node/OS|os]]
 * [[Node/Fs|fs]]
 * [[Node/Os|os]]

Node

node(1) is a ECMAScript interpreter. It comes with a standard library and a package manager. An extensive set of third-party modules are built upon this foundation.


Example

console.log("Hello, world!");

This can be executed like:

node example.js


Tool Chain

Builtin Modules


See also

Node.js API reference documentation


CategoryRicottone

Node (last edited 2025-12-19 21:15:07 by DominicRicottone)