Differences between revisions 4 and 10 (spanning 6 versions)
Revision 4 as of 2023-01-08 17:52:23
Size: 741
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 == == Tool Chain ==

 * [[Node/Electron|Electron]]
 * [[Node/Gyp|node-gyp]]
 * [[Node/Npm|npm]]
 * [[Node/React|React]]
 * [[Node/Webpack|Webpack]]
 * [[Node/Yarn|yarn]]



== Builtin Modules ==

 * [[Node/Fs|fs]]
 * [[Node/Os|os]]
 * [[Node/Path|path]]
Line 32: Line 47:
== Tool Chain ==
Line 34: Line 48:
 * [[Node/Electon|Electron]]
 * [[Node/Gyp|node-gyp]]
 * [[Node/Npm|npm]]
 * [[Node/Npx|npx]]
 * [[Node/WebPack|WebPack]]
 * [[Node/Yarn|yarn]]
== See also ==
Line 41: Line 50:


== Standard Library ==

 * [[Node/Console|console]]
 * [[Node/Crypto|crypto]]
 * [[Node/FS|fs]]
 * [[Node/OS|os]]
 * [[Node/Path|path]]
[[https://nodejs.org/api/|Node.js API reference documentation]]

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)