1.\" 2.\" This manpage is written in mdoc(7). 3.\" 4.\" * Language reference: 5.\" https://man.openbsd.org/mdoc.7 6.\" 7.\" * Atom editor support: 8.\" https://atom.io/packages/language-roff 9.\" 10.\" * Linting changes: 11.\" mandoc -Wall -Tlint /path/to/this.file # BSD 12.\" groff -w all -z /path/to/this.file # GNU/Linux, macOS 13.\" 14.\" 15.\" Before making changes, please note the following: 16.\" 17.\" * In Roff, each new sentence should begin on a new line. This gives 18.\" the Roff formatter better control over text-spacing, line-wrapping, 19.\" and paragraph justification. 20.\" 21.\" * Do not leave blank lines in the markup. If whitespace is desired 22.\" for readability, put a dot in the first column to indicate a null/empty 23.\" command. Comments and horizontal whitespace may optionally follow: each 24.\" of these lines are an example of a null command immediately followed by 25.\" a comment. 26.\" 27.\"====================================================================== 28. 29.tr -\-^\(ha~\(ti`\(ga 30.Dd 2018 31.Dt NODE 1 32. 33.Sh NAME 34.Nm node 35.Nd server-side JavaScript runtime 36. 37.\"====================================================================== 38.Sh SYNOPSIS 39.Nm node 40.Op Ar options 41.Op Ar v8-options 42.Op Fl e Ar string | Ar script.js | Fl 43.Op Fl - 44.Op Ar arguments ... 45. 46.Nm node 47.Cm inspect 48.Op Fl e Ar string | Ar script.js | Fl | Ar <host>:<port> 49.Ar ... 50. 51.Nm node 52.Op Fl -v8-options 53. 54.\"====================================================================== 55.Sh DESCRIPTION 56Node.js is a set of libraries for JavaScript which allows it to be used outside of the browser. 57It is primarily focused on creating simple, easy-to-build network clients and servers. 58.Pp 59Execute 60.Nm 61without arguments to start a REPL. 62. 63.Sh OPTIONS 64.Bl -tag -width 6n 65.It Sy - 66Alias for stdin, analogous to the use of - in other command-line utilities. 67The executed script is read from stdin, and remaining arguments are passed to the script. 68. 69.It Fl - 70Indicate the end of command-line options. 71Pass the rest of the arguments to the script. 72.Pp 73If no script filename or eval/print script is supplied prior to this, then 74the next argument will be used as a script filename. 75. 76.It Fl -abort-on-uncaught-exception 77Aborting instead of exiting causes a core file to be generated for analysis. 78. 79.It Fl -completion-bash 80Print source-able bash completion script for Node.js. 81. 82.It Fl C , Fl -conditions Ar string 83Use custom conditional exports conditions. 84.Ar string 85. 86.It Fl -cpu-prof 87Start the V8 CPU profiler on start up, and write the CPU profile to disk 88before exit. If 89.Fl -cpu-prof-dir 90is not specified, the profile will be written to the current working directory 91with a generated file name. 92. 93.It Fl -cpu-prof-dir 94The directory where the CPU profiles generated by 95.Fl -cpu-prof 96will be placed. 97The default value is controlled by the 98.Fl -diagnostic-dir . 99command-line option. 100. 101.It Fl -cpu-prof-interval 102The sampling interval in microseconds for the CPU profiles generated by 103.Fl -cpu-prof . 104The default is 105.Sy 1000 . 106. 107.It Fl -cpu-prof-name 108File name of the V8 CPU profile generated with 109.Fl -cpu-prof . 110. 111.It Fl -diagnostic-dir 112Set the directory for all diagnostic output files. 113Default is current working directory. 114Set the directory to which all diagnostic output files will be written to. 115Defaults to current working directory. 116. 117Affects the default output directory of: 118.Fl -cpu-prof-dir . 119.Fl -heap-prof-dir . 120.Fl -redirect-warnings . 121. 122.It Fl -disable-proto Ns = Ns Ar mode 123Disable the `Object.prototype.__proto__` property. If 124.Ar mode 125is `delete`, the property will be removed entirely. If 126.Ar mode 127is `throw`, accesses to the property will throw an exception with the code 128`ERR_PROTO_ACCESS`. 129. 130.It Fl -disallow-code-generation-from-strings 131Make built-in language features like `eval` and `new Function` that generate 132code from strings throw an exception instead. This does not affect the Node.js 133`vm` module. 134. 135.It Fl -enable-fips 136Enable FIPS-compliant crypto at startup. 137Requires Node.js to be built with 138.Sy ./configure --openssl-fips . 139. 140.It Fl -enable-source-maps 141Enable Source Map V3 support for stack traces. 142. 143.It Fl -experimental-default-type Ns = Ns Ar type 144Interpret as either ES modules or CommonJS modules input via --eval or STDIN, when --input-type is unspecified; 145.js or extensionless files with no sibling or parent package.json; 146.js or extensionless files whose nearest parent package.json lacks a "type" field, unless under node_modules. 147. 148.It Fl -experimental-global-customevent 149Expose the CustomEvent on the global scope. 150. 151.It Fl -experimental-global-webcrypto 152Expose the Web Crypto API on the global scope. 153. 154.It Fl -experimental-import-meta-resolve 155Enable experimental ES modules support for import.meta.resolve(). 156. 157.It Fl -experimental-loader Ns = Ns Ar module 158Specify the 159.Ar module 160to use as a custom module loader. 161. 162.It Fl -experimental-network-imports 163Enable experimental support for loading modules using `import` over `https:`. 164. 165.It Fl -experimental-policy 166Use the specified file as a security policy. 167. 168.It Fl -experimental-shadow-realm 169Use this flag to enable ShadowRealm support. 170. 171.It Fl -experimental-test-coverage 172Enable code coverage in the test runner. 173. 174.It Fl -no-experimental-fetch 175Disable experimental support for the Fetch API. 176. 177.It Fl -no-experimental-repl-await 178Disable top-level await keyword support in REPL. 179. 180.It Fl -experimental-specifier-resolution 181Select extension resolution algorithm for ES Modules; either 'explicit' (default) or 'node'. 182. 183.It Fl -experimental-vm-modules 184Enable experimental ES module support in VM module. 185. 186.It Fl -experimental-wasi-unstable-preview1 187Enable experimental WebAssembly System Interface support. This 188flag is no longer required as WASI is enabled by default. 189. 190.It Fl -experimental-wasm-modules 191Enable experimental WebAssembly module support. 192. 193.It Fl -force-context-aware 194Disable loading native addons that are not context-aware. 195. 196.It Fl -force-fips 197Force FIPS-compliant crypto on startup 198(Cannot be disabled from script code). 199Same requirements as 200.Fl -enable-fips . 201. 202.It Fl -frozen-intrinsics 203Enable experimental frozen intrinsics support. 204. 205.It Fl -heapsnapshot-near-heap-limit Ns = Ns Ar max_count 206Generate heap snapshot when the V8 heap usage is approaching the heap limit. 207No more than the specified number of snapshots will be generated. 208. 209.It Fl -heapsnapshot-signal Ns = Ns Ar signal 210Generate heap snapshot on specified signal. 211. 212.It Fl -heap-prof 213Start the V8 heap profiler on start up, and write the heap profile to disk 214before exit. If 215.Fl -heap-prof-dir 216is not specified, the profile will be written to the current working directory 217with a generated file name. 218. 219.It Fl -heap-prof-dir 220The directory where the heap profiles generated by 221.Fl -heap-prof 222will be placed. 223The default value is controlled by the 224.Fl -diagnostic-dir . 225command-line option. 226. 227.It Fl -heap-prof-interval 228The average sampling interval in bytes for the heap profiles generated by 229.Fl -heap-prof . 230The default is 231.Sy 512 * 1024 . 232. 233.It Fl -heap-prof-name 234File name of the V8 heap profile generated with 235.Fl -heap-prof . 236. 237.It Fl -icu-data-dir Ns = Ns Ar file 238Specify ICU data load path. 239Overrides 240.Ev NODE_ICU_DATA . 241. 242.It Fl -input-type Ns = Ns Ar type 243Set the module resolution type for input via --eval, --print or STDIN. 244. 245.It Fl -inspect-brk Ns = Ns Ar [host:]port 246Activate inspector on 247.Ar host:port 248and break at start of user script. 249. 250.It Fl -inspect-port Ns = Ns Ar [host:]port 251Set the 252.Ar host:port 253to be used when the inspector is activated. 254. 255.It Fl -inspect-publish-uid=stderr,http 256Specify how the inspector WebSocket URL is exposed. 257Valid values are 258.Sy stderr 259and 260.Sy http . 261Default is 262.Sy stderr,http . 263. 264.It Fl -inspect Ns = Ns Ar [host:]port 265Activate inspector on 266.Ar host:port . 267Default is 268.Sy 127.0.0.1:9229 . 269.Pp 270V8 Inspector integration allows attaching Chrome DevTools and IDEs to Node.js instances for debugging and profiling. 271It uses the Chrome DevTools Protocol. 272. 273.It Fl -insecure-http-parser 274Use an insecure HTTP parser that accepts invalid HTTP headers. This may allow 275interoperability with non-conformant HTTP implementations. It may also allow 276request smuggling and other HTTP attacks that rely on invalid headers being 277accepted. Avoid using this option. 278. 279.It Fl -jitless 280Disable runtime allocation of executable memory. This may be required on 281some platforms for security reasons. It can also reduce attack surface on 282other platforms, but the performance impact may be severe. 283. 284.Pp 285This flag is inherited from V8 and is subject to change upstream. It may 286disappear in a non-semver-major release. 287. 288.It Fl -max-http-header-size Ns = Ns Ar size 289Specify the maximum size of HTTP headers in bytes. Defaults to 16 KiB. 290. 291.It Fl -napi-modules 292This option is a no-op. 293It is kept for compatibility. 294. 295.It Fl -no-deprecation 296Silence deprecation warnings. 297. 298.It Fl -no-extra-info-on-fatal-exception 299Hide extra information on fatal exception that causes exit. 300. 301.It Fl -no-force-async-hooks-checks 302Disable runtime checks for `async_hooks`. 303These will still be enabled dynamically when `async_hooks` is enabled. 304. 305.It Fl -no-addons 306Disable the `node-addons` exports condition as well as disable loading native 307addons. When `--no-addons` is specified, calling `process.dlopen` or requiring 308a native C++ addon will fail and throw an exception. 309. 310.It Fl -no-global-search-paths 311Do not search modules from global paths. 312. 313.It Fl -no-warnings 314Silence all process warnings (including deprecations). 315. 316.It Fl -node-memory-debug 317Enable extra debug checks for memory leaks in Node.js internals. This is 318usually only useful for developers debugging Node.js itself. 319. 320.It Fl -openssl-config Ns = Ns Ar file 321Load an OpenSSL configuration file on startup. 322Among other uses, this can be used to enable FIPS-compliant crypto if Node.js is built with 323.Sy ./configure --openssl-fips . 324. 325.It Fl -pending-deprecation 326Emit pending deprecation warnings. 327. 328.It Fl -policy-integrity Ns = Ns Ar sri 329Instructs Node.js to error prior to running any code if the policy does not have the specified integrity. It expects a Subresource Integrity string as a parameter. 330. 331.It Fl -preserve-symlinks 332Instructs the module loader to preserve symbolic links when resolving and caching modules other than the main module. 333. 334.It Fl -preserve-symlinks-main 335Instructs the module loader to preserve symbolic links when resolving and caching the main module. 336. 337.It Fl -prof 338Generate V8 profiler output. 339. 340.It Fl -prof-process 341Process V8 profiler output generated using the V8 option 342.Fl -prof . 343. 344.It Fl -redirect-warnings Ns = Ns Ar file 345Write process warnings to the given 346.Ar file 347instead of printing to stderr. 348. 349.It Fl -report-compact 350Write 351.Sy diagnostic reports 352in a compact format, single-line JSON. 353. 354.It Fl -report-dir Fl -report-directory 355Location at which the 356.Sy diagnostic report 357will be generated. 358The `file` name may be an absolute path. If it is not, the default directory it will 359be written to is controlled by the 360.Fl -diagnostic-dir . 361command-line option. 362. 363.It Fl -report-filename 364Name of the file to which the 365.Sy diagnostic report 366will be written. 367. 368.It Fl -report-on-fatalerror 369Enables the 370.Sy diagnostic report 371to be triggered on fatal errors (internal errors within the Node.js runtime such 372as out of memory) that leads to termination of the application. Useful to 373inspect various diagnostic data elements such as heap, stack, event loop state, 374resource consumption etc. to reason about the fatal error. 375. 376.It Fl -report-on-signal 377Enables 378.Sy diagnostic report 379to be generated upon receiving the specified (or predefined) signal to the 380running Node.js process. Default signal is SIGUSR2. 381. 382.It Fl -report-signal 383Sets or resets the signal for 384.Sy diagnostic report 385generation (not supported on Windows). Default signal is SIGUSR2. 386. 387.It Fl -report-uncaught-exception 388Enables 389.Sy diagnostic report 390to be generated on un-caught exceptions. Useful when inspecting JavaScript 391stack in conjunction with native stack and other runtime environment data. 392. 393.It Fl -secure-heap Ns = Ns Ar n 394Specify the size of the OpenSSL secure heap. Any value less than 2 disables 395the secure heap. The default is 0. The value must be a power of two. 396. 397.It Fl -secure-heap-min Ns = Ns Ar n 398Specify the minimum allocation from the OpenSSL secure heap. The default is 2. The value must be a power of two. 399. 400.It Fl -test 401Starts the Node.js command line test runner. 402. 403.It Fl -test-concurrency 404The maximum number of test files that the test runner CLI will execute 405concurrently. 406. 407.It Fl -test-name-pattern 408A regular expression that configures the test runner to only execute tests 409whose name matches the provided pattern. 410. 411.It Fl -test-reporter 412A test reporter to use when running tests. 413. 414.It Fl -test-reporter-destination 415The destination for the corresponding test reporter. 416. 417.It Fl -test-only 418Configures the test runner to only execute top level tests that have the `only` 419option set. 420. 421.It Fl -test-shard 422Test suite shard to execute in a format of <index>/<total>. 423. 424.It Fl -throw-deprecation 425Throw errors for deprecations. 426. 427.It Fl -title Ns = Ns Ar title 428Specify process.title on startup. 429. 430.It Fl -tls-cipher-list Ns = Ns Ar list 431Specify an alternative default TLS cipher list. 432Requires Node.js to be built with crypto support. (Default) 433. 434.It Fl -tls-keylog Ns = Ns Ar file 435Log TLS key material to a file. The key material is in NSS SSLKEYLOGFILE 436format and can be used by software (such as Wireshark) to decrypt the TLS 437traffic. 438. 439.It Fl -tls-max-v1.2 440Set default maxVersion to 'TLSv1.2'. Use to disable support for TLSv1.3. 441. 442.It Fl -tls-max-v1.3 443Set default maxVersion to 'TLSv1.3'. Use to enable support for TLSv1.3. 444. 445.It Fl -tls-min-v1.0 446Set default minVersion to 'TLSv1'. Use for compatibility with old TLS clients 447or servers. 448. 449.It Fl -tls-min-v1.1 450Set default minVersion to 'TLSv1.1'. Use for compatibility with old TLS clients 451or servers. 452. 453.It Fl -tls-min-v1.2 454Set default minVersion to 'TLSv1.2'. This is the default for 12.x and later, 455but the option is supported for compatibility with older Node.js versions. 456. 457.It Fl -tls-min-v1.3 458Set default minVersion to 'TLSv1.3'. Use to disable support for TLSv1.2 in 459favour of TLSv1.3, which is more secure. 460. 461.It Fl -trace-atomics-wait 462Print short summaries of calls to 463.Sy Atomics.wait() . 464. 465This flag is deprecated. 466.It Fl -trace-deprecation 467Print stack traces for deprecations. 468. 469.It Fl -trace-event-categories Ar categories 470A comma-separated list of categories that should be traced when trace event tracing is enabled using 471.Fl -trace-events-enabled . 472. 473.It Fl -trace-event-file-pattern Ar pattern 474Template string specifying the filepath for the trace event data, it 475supports 476.Sy ${rotation} 477and 478.Sy ${pid} . 479. 480.It Fl -trace-events-enabled 481Enable the collection of trace event tracing information. 482. 483.It Fl -trace-exit 484Prints a stack trace whenever an environment is exited proactively, 485i.e. invoking `process.exit()`. 486.It Fl -trace-sigint 487Prints a stack trace on SIGINT. 488. 489.It Fl -trace-sync-io 490Print a stack trace whenever synchronous I/O is detected after the first turn of the event loop. 491. 492.It Fl -trace-tls 493Prints TLS packet trace information to stderr. 494. 495.It Fl -trace-uncaught 496Print stack traces for uncaught exceptions; usually, the stack trace associated 497with the creation of an 498.Sy Error 499is printed, whereas this makes Node.js also 500print the stack trace associated with throwing the value (which does not need 501to be an 502.Sy Error 503instance). 504.Pp 505Enabling this option may affect garbage collection behavior negatively. 506. 507.It Fl -trace-warnings 508Print stack traces for process warnings (including deprecations). 509. 510.It Fl -track-heap-objects 511Track heap object allocations for heap snapshots. 512. 513.It Fl -unhandled-rejections=mode 514Define the behavior for unhandled rejections. Can be one of `strict` (raise an error), `warn` (enforce warnings) or `none` (silence warnings). 515. 516.It Fl -use-bundled-ca , Fl -use-openssl-ca 517Use bundled Mozilla CA store as supplied by current Node.js version or use OpenSSL's default CA store. 518The default store is selectable at build-time. 519.Pp 520The bundled CA store, as supplied by Node.js, is a snapshot of Mozilla CA store that is fixed at release time. 521It is identical on all supported platforms. 522.Pp 523Using OpenSSL store allows for external modifications of the store. 524For most Linux and BSD distributions, this store is maintained by the distribution maintainers and system administrators. 525OpenSSL CA store location is dependent on configuration of the OpenSSL library but this can be altered at runtime using environment variables. 526.Pp 527See 528.Ev SSL_CERT_DIR 529and 530.Ev SSL_CERT_FILE . 531. 532.It Fl -use-largepages Ns = Ns Ar mode 533Re-map the Node.js static code to large memory pages at startup. If supported on 534the target system, this will cause the Node.js static code to be moved onto 2 535MiB pages instead of 4 KiB pages. 536.Pp 537.Ar mode 538must have one of the following values: 539`off` (the default value, meaning do not map), `on` (map and ignore failure, 540reporting it to stderr), or `silent` (map and silently ignore failure). 541. 542.It Fl -v8-options 543Print V8 command-line options. 544. 545.It Fl -v8-pool-size Ns = Ns Ar num 546Set V8's thread pool size which will be used to allocate background jobs. 547If set to 0 then V8 will choose an appropriate size of the thread pool based on the number of online processors. 548If the value provided is larger than V8's maximum, then the largest value will be chosen. 549. 550.It Fl -zero-fill-buffers 551Automatically zero-fills all newly allocated Buffer and SlowBuffer instances. 552. 553.It Fl c , Fl -check 554Check the script's syntax without executing it. 555Exits with an error code if script is invalid. 556. 557.It Fl e , Fl -eval Ar string 558Evaluate 559.Ar string 560as JavaScript. 561. 562.It Fl h , Fl -help 563Print command-line options. 564The output of this option is less detailed than this document. 565. 566.It Fl i , Fl -interactive 567Open the REPL even if stdin does not appear to be a terminal. 568. 569.It Fl p , Fl -print Ar string 570Identical to 571.Fl e , 572but prints the result. 573. 574.It Fl r , Fl -require Ar module 575Preload the specified 576.Ar module 577at startup. 578Follows `require()`'s module resolution rules. 579.Ar module 580may be either a path to a file, or a Node.js module name. 581. 582.It Fl v , Fl -version 583Print node's version. 584.El 585. 586.\" ===================================================================== 587.Sh ENVIRONMENT 588.Bl -tag -width 6n 589.It Ev FORCE_COLOR 590Used to enable ANSI colorized output. The value may be one of: 591.Ar 1 592, 593.Ar true 594, or 595.Ar an empty string 596to 597indicate 16-color support, 598.Ar 2 599to indicate 256-color support, or 600.Ar 3 601to indicate 16 million-color support. When used and set to a supported 602value, both the NO_COLOR and NODE_DISABLE_COLORS environment variables 603are ignored. Any other value will result in colorized output being 604disabled. 605. 606.It Ev NO_COLOR 607Alias for NODE_DISABLE_COLORS 608. 609.It Ev NODE_DEBUG Ar modules... 610Comma-separated list of core modules that should print debug information. 611. 612.It Ev NODE_DEBUG_NATIVE Ar modules... 613Comma-separated list of C++ core modules that should print debug information. 614. 615.It Ev NODE_DISABLE_COLORS 616When set to 617.Ar 1 , 618colors will not be used in the REPL. 619. 620.It Ev NODE_EXTRA_CA_CERTS Ar file 621When set, the well-known 622.Dq root 623CAs (like VeriSign) will be extended with the extra certificates in 624.Ar file . 625The file should consist of one or more trusted certificates in PEM format. 626.Pp 627If 628.Ar file 629is missing or misformatted, a message will be emitted once using 630.Sy process.emitWarning() , 631but any errors are otherwise ignored. 632.Pp 633This environment variable is ignored when `node` runs as setuid root or 634has Linux file capabilities set. 635.Pp 636The 637.Ar NODE_EXTRA_CA_CERTS 638environment variable is only read when the Node.js process is first launched. 639Changing the value at runtime using 640.Ar process.env.NODE_EXTRA_CA_CERTS 641has no effect on the current process. 642. 643.It Ev NODE_ICU_DATA Ar file 644Data path for ICU (Intl object) data. 645Will extend linked-in data when compiled with small-icu support. 646. 647.It Ev NODE_NO_WARNINGS 648When set to 649.Ar 1 , 650process warnings are silenced. 651. 652.It Ev NODE_OPTIONS Ar options... 653A space-separated list of command-line 654.Ar options , 655which are interpreted as if they had been specified on the command line before the actual command (so they can be overridden). 656Node.js will exit with an error if an option that is not allowed in the environment is used, such as 657.Fl -print 658or a script file. 659. 660.It Ev NODE_PATH Ar directories... 661A colon-separated list of 662.Ar directories 663prefixed to the module search path. 664. 665.It Ev NODE_PENDING_DEPRECATION 666When set to 667.Ar 1 , 668emit pending deprecation warnings. 669. 670.It Ev NODE_PRESERVE_SYMLINKS 671When set to 672.Ar 1 , 673the module loader preserves symbolic links when resolving and caching modules. 674. 675.It Ev NODE_REDIRECT_WARNINGS Ar file 676Write process warnings to the given 677.Ar file 678instead of printing to stderr. 679Equivalent to passing 680.Fl -redirect-warnings Ar file 681on the command line. 682. 683.It Ev NODE_REPL_HISTORY Ar file 684Path to the 685.Ar file 686used to store persistent REPL history. 687The default path is 688.Sy ~/.node_repl_history , 689which is overridden by this variable. 690Setting the value to an empty string ("" or " ") will disable persistent REPL history. 691. 692.It Ev NODE_REPL_EXTERNAL_MODULE Ar file 693Path to a Node.js module which will be loaded in place of the built-in REPL. 694Overriding this value to an empty string (`''`) will use the built-in REPL. 695. 696.It Ev NODE_SKIP_PLATFORM_CHECK 697When set to 698.Ar 1 , 699the check for a supported platform is skipped during Node.js startup. 700Node.js might not execute correctly. 701Any issues encountered on unsupported platforms will not be fixed. 702. 703.It Ev NODE_TLS_REJECT_UNAUTHORIZED 704When set to 705.Ar 0 , 706TLS certificate validation is disabled. 707. 708.It Ev NODE_V8_COVERAGE Ar dir 709When set, Node.js writes JavaScript code coverage information to 710.Ar dir . 711. 712.It Ev OPENSSL_CONF Ar file 713Load an OpenSSL configuration file on startup. 714Among other uses, this can be used to enable FIPS-compliant crypto if Node.js is built with 715.Sy ./configure --openssl-fips . 716.Pp 717If the 718.Fl -openssl-config 719command-line option is used, this environment variable is ignored. 720. 721.It Ev SSL_CERT_DIR Ar dir 722If 723.Fl -use-openssl-ca 724is enabled, this overrides and sets OpenSSL's directory containing trusted certificates. 725. 726.It Ev SSL_CERT_FILE Ar file 727If 728.Fl -use-openssl-ca 729is enabled, this overrides and sets OpenSSL's file containing trusted certificates. 730. 731.It Ev TZ 732Specify the timezone configuration. 733. 734.It Ev UV_THREADPOOL_SIZE Ar size 735Sets the number of threads used in libuv's threadpool to 736.Ar size . 737. 738.El 739.\"===================================================================== 740.Sh BUGS 741Bugs are tracked in GitHub Issues: 742.Sy https://github.com/nodejs/node/issues 743. 744.\"====================================================================== 745.Sh COPYRIGHT 746Copyright Node.js contributors. 747Node.js is available under the MIT license. 748. 749.Pp 750Node.js also includes external libraries that are available under a variety of licenses. 751See 752.Sy https://github.com/nodejs/node/blob/HEAD/LICENSE 753for the full license text. 754. 755.\"====================================================================== 756.Sh SEE ALSO 757Website: 758.Sy https://nodejs.org/ 759. 760.Pp 761Documentation: 762.Sy https://nodejs.org/api/ 763. 764.Pp 765GitHub repository and issue tracker: 766.Sy https://github.com/nodejs/node 767. 768.Pp 769IRC (general questions): 770.Sy "libera.chat #node.js" 771(unofficial) 772. 773.\"====================================================================== 774.Sh AUTHORS 775Written and maintained by 1000+ contributors: 776.Sy https://github.com/nodejs/node/blob/HEAD/AUTHORS 777