2018-02-03 13:16:50 +00:00
|
|
|
.\"
|
|
|
|
.\" This manpage is written in mdoc(7).
|
|
|
|
.\"
|
|
|
|
.\" * Language reference:
|
|
|
|
.\" https://man.openbsd.org/mdoc.7
|
|
|
|
.\"
|
|
|
|
.\" * Atom editor support:
|
|
|
|
.\" https://atom.io/packages/language-roff
|
|
|
|
.\"
|
|
|
|
.\" * Linting changes:
|
|
|
|
.\" mandoc -Wall -Tlint /path/to/this.file # BSD
|
|
|
|
.\" groff -w all -z /path/to/this.file # GNU/Linux, macOS
|
|
|
|
.\"
|
|
|
|
.\"
|
|
|
|
.\" Before making changes, please note the following:
|
|
|
|
.\"
|
|
|
|
.\" * In Roff, each new sentence should begin on a new line. This gives
|
|
|
|
.\" the Roff formatter better control over text-spacing, line-wrapping,
|
|
|
|
.\" and paragraph justification.
|
|
|
|
.\"
|
|
|
|
.\" * Do not leave blank lines in the markup. If whitespace is desired
|
|
|
|
.\" for readability, put a dot in the first column to indicate a null/empty
|
|
|
|
.\" command. Comments and horizontal whitespace may optionally follow: each
|
|
|
|
.\" of these lines are an example of a null command immediately followed by
|
|
|
|
.\" a comment.
|
|
|
|
.\"
|
|
|
|
.\"======================================================================
|
|
|
|
.
|
|
|
|
.Dd 2018
|
|
|
|
.Dt NODE 1
|
|
|
|
.
|
|
|
|
.Sh NAME
|
|
|
|
.Nm node
|
|
|
|
.Nd server-side JavaScript runtime
|
|
|
|
.
|
|
|
|
.\"======================================================================
|
|
|
|
.Sh SYNOPSIS
|
|
|
|
.Nm node
|
|
|
|
.Op Ar options
|
|
|
|
.Op Ar v8-options
|
|
|
|
.Op Fl e Ar string | Ar script.js | Fl
|
2018-05-15 05:40:52 +00:00
|
|
|
.Op Fl -
|
2018-02-03 13:16:50 +00:00
|
|
|
.Op Ar arguments ...
|
|
|
|
.
|
|
|
|
.Nm node
|
2018-09-09 14:57:37 +00:00
|
|
|
.Cm inspect
|
2018-02-03 13:16:50 +00:00
|
|
|
.Op Fl e Ar string | Ar script.js | Fl | Ar <host>:<port>
|
|
|
|
.Ar ...
|
|
|
|
.
|
|
|
|
.Nm node
|
|
|
|
.Op Fl -v8-options
|
|
|
|
.
|
|
|
|
.\"======================================================================
|
|
|
|
.Sh DESCRIPTION
|
|
|
|
Node.js is a set of libraries for JavaScript which allows it to be used outside of the browser.
|
|
|
|
It is primarily focused on creating simple, easy-to-build network clients and servers.
|
|
|
|
.Pp
|
|
|
|
Execute
|
|
|
|
.Nm
|
|
|
|
without arguments to start a REPL.
|
|
|
|
.
|
|
|
|
.Sh OPTIONS
|
|
|
|
.Bl -tag -width 6n
|
2018-05-15 05:40:52 +00:00
|
|
|
.It Sy -
|
2018-04-08 06:33:19 +00:00
|
|
|
Alias for stdin, analogous to the use of - in other command-line utilities.
|
|
|
|
The executed script is read from stdin, and remaining arguments are passed to the script.
|
2018-02-03 13:16:50 +00:00
|
|
|
.
|
2018-05-15 05:40:52 +00:00
|
|
|
.It Fl -
|
2018-11-02 03:41:10 +00:00
|
|
|
Indicate the end of command-line options.
|
2018-04-08 06:33:19 +00:00
|
|
|
Pass the rest of the arguments to the script.
|
|
|
|
.Pp
|
|
|
|
If no script filename or eval/print script is supplied prior to this, then
|
|
|
|
the next argument will be used as a script filename.
|
2018-02-03 13:16:50 +00:00
|
|
|
.
|
2018-04-08 06:33:19 +00:00
|
|
|
.It Fl -abort-on-uncaught-exception
|
|
|
|
Aborting instead of exiting causes a core file to be generated for analysis.
|
2018-02-03 13:16:50 +00:00
|
|
|
.
|
2018-05-14 11:09:27 +00:00
|
|
|
.It Fl -completion-bash
|
|
|
|
Print source-able bash completion script for Node.js.
|
|
|
|
.
|
2018-04-08 06:33:19 +00:00
|
|
|
.It Fl -enable-fips
|
|
|
|
Enable FIPS-compliant crypto at startup.
|
|
|
|
Requires Node.js to be built with
|
|
|
|
.Sy ./configure --openssl-fips .
|
2018-02-03 13:16:50 +00:00
|
|
|
.
|
2018-05-15 05:40:52 +00:00
|
|
|
.It Fl -experimental-modules
|
2018-04-08 06:33:19 +00:00
|
|
|
Enable experimental ES module support and caching modules.
|
2018-02-03 13:16:50 +00:00
|
|
|
.
|
2018-05-15 05:40:52 +00:00
|
|
|
.It Fl -experimental-repl-await
|
2018-04-18 15:50:35 +00:00
|
|
|
Enable experimental top-level
|
|
|
|
.Sy await
|
|
|
|
keyword support in REPL.
|
|
|
|
.
|
2018-05-15 05:40:52 +00:00
|
|
|
.It Fl -experimental-vm-modules
|
2018-04-08 06:33:19 +00:00
|
|
|
Enable experimental ES module support in VM module.
|
2018-02-03 13:16:50 +00:00
|
|
|
.
|
2018-04-08 06:33:19 +00:00
|
|
|
.It Fl -force-fips
|
|
|
|
Force FIPS-compliant crypto on startup
|
|
|
|
(Cannot be disabled from script code).
|
|
|
|
Same requirements as
|
|
|
|
.Fl -enable-fips .
|
2018-02-03 13:16:50 +00:00
|
|
|
.
|
2018-12-14 15:14:07 +00:00
|
|
|
.It Fl -http-parser Ns = Ns Ar library
|
|
|
|
Chooses an HTTP parser library. Available values are
|
|
|
|
.Sy llhttp
|
|
|
|
or
|
|
|
|
.Sy legacy .
|
|
|
|
.
|
2018-04-08 06:33:19 +00:00
|
|
|
.It Fl -icu-data-dir Ns = Ns Ar file
|
|
|
|
Specify ICU data load path.
|
|
|
|
Overrides
|
|
|
|
.Ev NODE_ICU_DATA .
|
2018-02-03 13:16:50 +00:00
|
|
|
.
|
|
|
|
.It Fl -inspect-brk Ns = Ns Ar [host:]port
|
|
|
|
Activate inspector on
|
|
|
|
.Ar host:port
|
|
|
|
and break at start of user script.
|
|
|
|
.
|
|
|
|
.It Fl -inspect-port Ns = Ns Ar [host:]port
|
|
|
|
Set the
|
|
|
|
.Ar host:port
|
|
|
|
to be used when the inspector is activated.
|
|
|
|
.
|
2018-04-08 06:33:19 +00:00
|
|
|
.It Fl -inspect Ns = Ns Ar [host:]port
|
|
|
|
Activate inspector on
|
|
|
|
.Ar host:port .
|
|
|
|
Default is
|
|
|
|
.Sy 127.0.0.1:9229 .
|
|
|
|
.Pp
|
|
|
|
V8 Inspector integration allows attaching Chrome DevTools and IDEs to Node.js instances for debugging and profiling.
|
2018-04-17 17:04:03 +00:00
|
|
|
It uses the Chrome DevTools Protocol.
|
2018-02-03 13:16:50 +00:00
|
|
|
.
|
2018-08-03 09:24:14 +00:00
|
|
|
.It Fl -loader Ns = Ns Ar file
|
|
|
|
Specify the
|
|
|
|
.Ar file
|
|
|
|
as a custom loader, to load
|
|
|
|
.Fl -experimental-modules .
|
|
|
|
.
|
2018-12-03 17:27:46 +00:00
|
|
|
.It Fl -max-http-header-size Ns = Ns Ar size
|
|
|
|
Specify the maximum size of HTTP headers in bytes. Defaults to 8KB.
|
|
|
|
.
|
2018-04-08 06:33:19 +00:00
|
|
|
.It Fl -napi-modules
|
2018-05-15 05:40:52 +00:00
|
|
|
This option is a no-op.
|
|
|
|
It is kept for compatibility.
|
2018-02-03 13:16:50 +00:00
|
|
|
.
|
2018-04-08 06:33:19 +00:00
|
|
|
.It Fl -no-deprecation
|
|
|
|
Silence deprecation warnings.
|
2018-02-03 13:16:50 +00:00
|
|
|
.
|
2018-04-08 06:33:19 +00:00
|
|
|
.It Fl -no-force-async-hooks-checks
|
|
|
|
Disable runtime checks for `async_hooks`.
|
|
|
|
These will still be enabled dynamically when `async_hooks` is enabled.
|
2018-02-03 13:16:50 +00:00
|
|
|
.
|
|
|
|
.It Fl -no-warnings
|
2016-01-20 19:38:35 +00:00
|
|
|
Silence all process warnings (including deprecations).
|
2018-02-03 13:16:50 +00:00
|
|
|
.
|
2018-04-08 06:33:19 +00:00
|
|
|
.It Fl -openssl-config Ns = Ns Ar file
|
|
|
|
Load an OpenSSL configuration file on startup.
|
|
|
|
Among other uses, this can be used to enable FIPS-compliant crypto if Node.js is built with
|
|
|
|
.Sy ./configure --openssl-fips .
|
2018-02-03 13:16:50 +00:00
|
|
|
.
|
2018-04-08 06:33:19 +00:00
|
|
|
.It Fl -pending-deprecation
|
|
|
|
Emit pending deprecation warnings.
|
2018-02-03 13:16:50 +00:00
|
|
|
.
|
2018-04-08 06:33:19 +00:00
|
|
|
.It Fl -preserve-symlinks
|
2018-04-10 07:40:56 +00:00
|
|
|
Instructs the module loader to preserve symbolic links when resolving and caching modules other than the main module.
|
|
|
|
.
|
2018-05-15 05:40:52 +00:00
|
|
|
.It Fl -preserve-symlinks-main
|
2018-04-10 07:40:56 +00:00
|
|
|
Instructs the module loader to preserve symbolic links when resolving and caching the main module.
|
2018-04-08 06:33:19 +00:00
|
|
|
.
|
2018-05-20 10:05:08 +00:00
|
|
|
.It Fl -prof
|
|
|
|
Generate V8 profiler output.
|
|
|
|
.
|
2018-04-08 06:33:19 +00:00
|
|
|
.It Fl -prof-process
|
|
|
|
Process V8 profiler output generated using the V8 option
|
|
|
|
.Fl -prof .
|
2018-02-03 13:16:50 +00:00
|
|
|
.
|
|
|
|
.It Fl -redirect-warnings Ns = Ns Ar file
|
|
|
|
Write process warnings to the given
|
|
|
|
.Ar file
|
|
|
|
instead of printing to stderr.
|
|
|
|
.
|
2018-04-08 06:33:19 +00:00
|
|
|
.It Fl -throw-deprecation
|
|
|
|
Throw errors for deprecations.
|
2018-02-03 13:16:50 +00:00
|
|
|
.
|
2018-06-22 23:16:03 +00:00
|
|
|
.It Fl -title Ns = Ns Ar title
|
|
|
|
Specify process.title on startup.
|
|
|
|
.
|
2018-04-08 06:33:19 +00:00
|
|
|
.It Fl -tls-cipher-list Ns = Ns Ar list
|
|
|
|
Specify an alternative default TLS cipher list.
|
|
|
|
Requires Node.js to be built with crypto support. (Default)
|
2018-02-03 13:16:50 +00:00
|
|
|
.
|
2018-10-22 09:40:28 +00:00
|
|
|
.It Fl -tls-v1.0
|
2018-11-15 23:51:55 +00:00
|
|
|
Enable TLSv1.0 and greater in default secureProtocol. Use for compatibility
|
|
|
|
with old TLS clients or servers.
|
2018-10-22 09:40:28 +00:00
|
|
|
.
|
|
|
|
.It Fl -tls-v1.1
|
2018-11-15 23:51:55 +00:00
|
|
|
Enable TLSv1.1 and greater in default secureProtocol. Use for compatibility
|
|
|
|
with old TLS clients or servers.
|
2018-10-22 09:40:28 +00:00
|
|
|
.
|
2018-04-08 06:33:19 +00:00
|
|
|
.It Fl -trace-deprecation
|
|
|
|
Print stack traces for deprecations.
|
2018-02-03 13:16:50 +00:00
|
|
|
.
|
|
|
|
.It Fl -trace-event-categories Ar categories
|
|
|
|
A comma-separated list of categories that should be traced when trace event tracing is enabled using
|
|
|
|
.Fl -trace-events-enabled .
|
|
|
|
.
|
2018-01-31 16:12:09 +00:00
|
|
|
.It Fl -trace-event-file-pattern Ar pattern
|
|
|
|
Template string specifying the filepath for the trace event data, it
|
2018-05-15 05:40:52 +00:00
|
|
|
supports
|
|
|
|
.Sy ${rotation}
|
|
|
|
and
|
|
|
|
.Sy ${pid} .
|
2018-01-31 16:12:09 +00:00
|
|
|
.
|
2018-04-08 06:33:19 +00:00
|
|
|
.It Fl -trace-events-enabled
|
|
|
|
Enable the collection of trace event tracing information.
|
2018-02-03 13:16:50 +00:00
|
|
|
.
|
2018-04-08 06:33:19 +00:00
|
|
|
.It Fl -trace-sync-io
|
|
|
|
Print a stack trace whenever synchronous I/O is detected after the first turn of the event loop.
|
|
|
|
.
|
|
|
|
.It Fl -trace-warnings
|
|
|
|
Print stack traces for process warnings (including deprecations).
|
2018-02-03 13:16:50 +00:00
|
|
|
.
|
|
|
|
.It Fl -track-heap-objects
|
2016-02-29 21:49:30 +00:00
|
|
|
Track heap object allocations for heap snapshots.
|
2018-02-03 13:16:50 +00:00
|
|
|
.
|
2018-05-15 05:40:52 +00:00
|
|
|
.It Fl -use-bundled-ca , Fl -use-openssl-ca
|
2018-04-08 06:33:19 +00:00
|
|
|
Use bundled Mozilla CA store as supplied by current Node.js version or use OpenSSL's default CA store.
|
|
|
|
The default store is selectable at build-time.
|
|
|
|
.Pp
|
|
|
|
The bundled CA store, as supplied by Node.js, is a snapshot of Mozilla CA store that is fixed at release time.
|
|
|
|
It is identical on all supported platforms.
|
|
|
|
.Pp
|
|
|
|
Using OpenSSL store allows for external modifications of the store.
|
|
|
|
For most Linux and BSD distributions, this store is maintained by the distribution maintainers and system administrators.
|
|
|
|
OpenSSL CA store location is dependent on configuration of the OpenSSL library but this can be altered at runtime using environment variables.
|
|
|
|
.Pp
|
|
|
|
See
|
|
|
|
.Ev SSL_CERT_DIR
|
|
|
|
and
|
|
|
|
.Ev SSL_CERT_FILE .
|
2018-02-03 13:16:50 +00:00
|
|
|
.
|
|
|
|
.It Fl -v8-options
|
|
|
|
Print V8 command-line options.
|
|
|
|
.
|
|
|
|
.It Fl -v8-pool-size Ns = Ns Ar num
|
|
|
|
Set V8's thread pool size which will be used to allocate background jobs.
|
|
|
|
If set to 0 then V8 will choose an appropriate size of the thread pool based on the number of online processors.
|
|
|
|
If the value provided is larger than V8's maximum, then the largest value will be chosen.
|
|
|
|
.
|
2018-04-08 06:33:19 +00:00
|
|
|
.It Fl -zero-fill-buffers
|
|
|
|
Automatically zero-fills all newly allocated Buffer and SlowBuffer instances.
|
2018-02-03 13:16:50 +00:00
|
|
|
.
|
2018-04-08 06:33:19 +00:00
|
|
|
.It Fl c , Fl -check
|
|
|
|
Check the script's syntax without executing it.
|
|
|
|
Exits with an error code if script is invalid.
|
2018-02-03 13:16:50 +00:00
|
|
|
.
|
2018-04-08 06:33:19 +00:00
|
|
|
.It Fl e , Fl -eval Ar string
|
|
|
|
Evaluate
|
|
|
|
.Ar string
|
|
|
|
as JavaScript.
|
2018-02-03 13:16:50 +00:00
|
|
|
.
|
2018-04-08 06:33:19 +00:00
|
|
|
.It Fl h , Fl -help
|
2018-11-02 03:41:10 +00:00
|
|
|
Print command-line options.
|
2018-04-08 06:33:19 +00:00
|
|
|
The output of this option is less detailed than this document.
|
2018-02-03 13:16:50 +00:00
|
|
|
.
|
2018-04-08 06:33:19 +00:00
|
|
|
.It Fl i , Fl -interactive
|
|
|
|
Open the REPL even if stdin does not appear to be a terminal.
|
2018-02-03 13:16:50 +00:00
|
|
|
.
|
2018-04-08 06:33:19 +00:00
|
|
|
.It Fl p , Fl -print Ar string
|
|
|
|
Identical to
|
|
|
|
.Fl e ,
|
|
|
|
but prints the result.
|
2018-02-03 13:16:50 +00:00
|
|
|
.
|
2018-04-08 06:33:19 +00:00
|
|
|
.It Fl r , Fl -require Ar module
|
|
|
|
Preload the specified
|
|
|
|
.Ar module
|
|
|
|
at startup.
|
|
|
|
Follows `require()`'s module resolution rules.
|
|
|
|
.Ar module
|
2018-10-30 05:04:25 +00:00
|
|
|
may be either a path to a file, or a Node.js module name.
|
2018-02-03 13:16:50 +00:00
|
|
|
.
|
2018-04-08 06:33:19 +00:00
|
|
|
.It Fl v , Fl -version
|
|
|
|
Print node's version.
|
2018-02-03 13:16:50 +00:00
|
|
|
.El
|
|
|
|
.
|
|
|
|
.\" =====================================================================
|
|
|
|
.Sh ENVIRONMENT
|
|
|
|
.Bl -tag -width 6n
|
|
|
|
.It Ev NODE_DEBUG Ar modules...
|
|
|
|
Comma-separated list of core modules that should print debug information.
|
|
|
|
.
|
2018-11-15 21:33:23 +00:00
|
|
|
.It Ev NODE_DEBUG_NATIVE Ar modules...
|
|
|
|
Comma-separated list of C++ core modules that should print debug information.
|
|
|
|
.
|
2018-02-03 13:16:50 +00:00
|
|
|
.It Ev NODE_DISABLE_COLORS
|
|
|
|
When set to
|
|
|
|
.Ar 1 ,
|
|
|
|
colors will not be used in the REPL.
|
|
|
|
.
|
|
|
|
.It Ev NODE_EXTRA_CA_CERTS Ar file
|
|
|
|
When set, the well-known
|
|
|
|
.Dq root
|
|
|
|
CAs (like VeriSign) will be extended with the extra certificates in
|
|
|
|
.Ar file .
|
|
|
|
The file should consist of one or more trusted certificates in PEM format.
|
|
|
|
.Pp
|
|
|
|
If
|
|
|
|
.Ar file
|
|
|
|
is missing or misformatted, a message will be emitted once using
|
|
|
|
.Sy process.emitWarning() ,
|
|
|
|
but any errors are otherwise ignored.
|
2018-10-19 21:39:46 +00:00
|
|
|
.Pp
|
|
|
|
This environment variable is ignored when `node` runs as setuid root or
|
|
|
|
has Linux file capabilities set.
|
2018-02-03 13:16:50 +00:00
|
|
|
.
|
|
|
|
.It Ev NODE_ICU_DATA Ar file
|
|
|
|
Data path for ICU (Intl object) data.
|
|
|
|
Will extend linked-in data when compiled with small-icu support.
|
|
|
|
.
|
|
|
|
.It Ev NODE_NO_WARNINGS
|
|
|
|
When set to
|
|
|
|
.Ar 1 ,
|
|
|
|
process warnings are silenced.
|
|
|
|
.
|
|
|
|
.It Ev NODE_OPTIONS Ar options...
|
|
|
|
A space-separated list of command-line
|
|
|
|
.Ar options ,
|
|
|
|
which are interpreted as if they had been specified on the command-line before the actual command (so they can be overridden).
|
2018-10-30 05:04:25 +00:00
|
|
|
Node.js will exit with an error if an option that is not allowed in the environment is used, such as
|
2018-02-03 13:16:50 +00:00
|
|
|
.Fl -print
|
|
|
|
or a script file.
|
|
|
|
.
|
|
|
|
.It Ev NODE_PATH Ar directories...
|
|
|
|
A colon-separated list of
|
|
|
|
.Ar directories
|
|
|
|
prefixed to the module search path.
|
|
|
|
.
|
|
|
|
.It Ev NODE_PENDING_DEPRECATION
|
|
|
|
When set to
|
|
|
|
.Ar 1 ,
|
|
|
|
emit pending deprecation warnings.
|
|
|
|
.
|
2018-11-15 21:33:23 +00:00
|
|
|
.It Ev NODE_PRESERVE_SYMLINKS
|
|
|
|
When set to
|
|
|
|
.Ar 1 ,
|
|
|
|
the module loader preserves symbolic links when resolving and caching modules.
|
|
|
|
.
|
2018-04-08 06:33:19 +00:00
|
|
|
.It Ev NODE_REDIRECT_WARNINGS Ar file
|
|
|
|
Write process warnings to the given
|
|
|
|
.Ar file
|
|
|
|
instead of printing to stderr.
|
|
|
|
Equivalent to passing
|
|
|
|
.Fl -redirect-warnings Ar file
|
|
|
|
on command-line.
|
2018-02-03 13:16:50 +00:00
|
|
|
.It Ev NODE_REPL_HISTORY Ar file
|
|
|
|
Path to the
|
|
|
|
.Ar file
|
|
|
|
used to store persistent REPL history.
|
|
|
|
The default path is
|
|
|
|
.Sy ~/.node_repl_history ,
|
|
|
|
which is overridden by this variable.
|
|
|
|
Setting the value to an empty string ("" or " ") will disable persistent REPL history.
|
|
|
|
.
|
2018-11-15 21:33:23 +00:00
|
|
|
.It Ev NODE_TLS_REJECT_UNAUTHORIZED
|
|
|
|
When set to
|
|
|
|
.Ar 0 ,
|
|
|
|
TLS certificate validation is disabled.
|
|
|
|
.
|
|
|
|
.It Ev NODE_V8_COVERAGE Ar dir
|
|
|
|
When set, Node.js writes JavaScript code coverage information to
|
|
|
|
.Ar dir .
|
|
|
|
.
|
2018-02-03 13:16:50 +00:00
|
|
|
.It Ev OPENSSL_CONF Ar file
|
|
|
|
Load an OpenSSL configuration file on startup.
|
|
|
|
Among other uses, this can be used to enable FIPS-compliant crypto if Node.js is built with
|
|
|
|
.Sy ./configure --openssl-fips .
|
|
|
|
.Pp
|
2017-01-25 22:13:34 +00:00
|
|
|
If the
|
2018-02-03 13:16:50 +00:00
|
|
|
.Fl -openssl-config
|
|
|
|
command-line option is used, this environment variable is ignored.
|
|
|
|
.
|
|
|
|
.It Ev SSL_CERT_DIR Ar dir
|
|
|
|
If
|
|
|
|
.Fl -use-openssl-ca
|
|
|
|
is enabled, this overrides and sets OpenSSL's directory containing trusted certificates.
|
|
|
|
.
|
|
|
|
.It Ev SSL_CERT_FILE Ar file
|
|
|
|
If
|
|
|
|
.Fl -use-openssl-ca
|
|
|
|
is enabled, this overrides and sets OpenSSL's file containing trusted certificates.
|
|
|
|
.
|
2018-11-15 21:33:23 +00:00
|
|
|
.It Ev UV_THREADPOOL_SIZE Ar size
|
|
|
|
Sets the number of threads used in libuv's threadpool to
|
|
|
|
.Ar size .
|
|
|
|
.
|
|
|
|
.El
|
2018-02-03 13:16:50 +00:00
|
|
|
.\"=====================================================================
|
|
|
|
.Sh BUGS
|
2016-10-08 07:51:28 +00:00
|
|
|
Bugs are tracked in GitHub Issues:
|
2018-02-03 13:16:50 +00:00
|
|
|
.Sy https://github.com/nodejs/node/issues
|
|
|
|
.
|
|
|
|
.\"======================================================================
|
|
|
|
.Sh COPYRIGHT
|
|
|
|
Copyright Node.js contributors.
|
|
|
|
Node.js is available under the MIT license.
|
|
|
|
.
|
|
|
|
.Pp
|
|
|
|
Node.js also includes external libraries that are available under a variety of licenses.
|
|
|
|
See
|
|
|
|
.Sy https://github.com/nodejs/node/blob/master/LICENSE
|
2016-10-08 07:51:28 +00:00
|
|
|
for the full license text.
|
2018-02-03 13:16:50 +00:00
|
|
|
.
|
|
|
|
.\"======================================================================
|
|
|
|
.Sh SEE ALSO
|
2016-07-21 12:12:16 +00:00
|
|
|
Website:
|
2018-02-03 13:16:50 +00:00
|
|
|
.Sy https://nodejs.org/
|
|
|
|
.
|
|
|
|
.Pp
|
2016-07-21 12:12:16 +00:00
|
|
|
Documentation:
|
2018-02-03 13:16:50 +00:00
|
|
|
.Sy https://nodejs.org/api/
|
|
|
|
.
|
|
|
|
.Pp
|
2016-07-21 12:12:16 +00:00
|
|
|
GitHub repository & Issue Tracker:
|
2018-02-03 13:16:50 +00:00
|
|
|
.Sy https://github.com/nodejs/node
|
|
|
|
.
|
|
|
|
.Pp
|
2016-07-21 12:12:16 +00:00
|
|
|
IRC (general questions):
|
2018-02-03 13:16:50 +00:00
|
|
|
.Sy "chat.freenode.net #node.js"
|
2016-10-08 07:51:28 +00:00
|
|
|
(unofficial)
|
2018-02-03 13:16:50 +00:00
|
|
|
.
|
|
|
|
.Pp
|
2016-10-08 07:51:28 +00:00
|
|
|
IRC (Node.js core development):
|
2018-02-03 13:16:50 +00:00
|
|
|
.Sy "chat.freenode.net #node-dev"
|
|
|
|
.
|
|
|
|
.\"======================================================================
|
|
|
|
.Sh AUTHORS
|
|
|
|
Written and maintained by 1000+ contributors:
|
|
|
|
.Sy https://github.com/nodejs/node/blob/master/AUTHORS
|