Differences between revisions 9 and 10
Revision 9 as of 2023-02-24 20:06:10
Size: 961
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/React|React]]
Line 43: Line 38:
== Standard Library == == Builtin Modules ==
Line 45: Line 40:
 * [[Node/Console|console]]
 * [[Node/Crypto|crypto]]
Line 50: Line 43:



=== Third-party Packages and Frameworks ===

 * [[Node/MonacoEditor|Monaco Editor]]
 * [[Node/React|React]]

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)