- Forked version: 14.14
- Assertion
- Async hooks
- Buffer
- C/C++ addons with Node-API
- Child processes
- Cluster
- Command-line options
- Console
- Crypto
- DNS
- Domain
- Errors
- Events
- File system
- Globals
- HTTP
- HTTP/2
- HTTPS
- Modules: CommonJS modules
- Net
- OS
- Path
- Process
- Punycode
- Query strings
- Readline
- Stream
- String decoder
- Timers
- TLS/SSL
- TTY
- UDP/datagram
- URL
- Utilities
- Zlib
- Deprecated APIs
- Worker threads
- Modules: ECMAScript modules
- Modules:
module
API - Modules: Packages
- Internationalization
- C++ addons
- C++ embedder API
- Debugger: Specific to V8. Debugging is supported via VS Code.
- Inspector: Specific to V8
- Performance hooks: Specific to V8
- Policies
- REPL
- Report: Specific to V8
- Trace events: Specific to V8
- V8: Specific to V8
- VM
- WASI
-
V8's implementation-specific internal APIs are not supported, e.g., Modules, etc.
-
Due to different GC models, V8's GC-related operations are not supported. Memory management is achieved by lwnode's automatic GC.
-
Supported user flags are:
--exposed-gc
,--disallow-code-generation-from-strings
. User flags specific to V8's internal APIs are not supported, e.g.,--max_old_space_size
, etc. -
vm
andrepl
are not supported for security reasons. -
All literal strings are encoded in UTF16, when JS source has been encoded in UTF16.
-
If a JS source code file is encoded in UTF16, all literal strings in the file will also be encoded in UTF16 even if UTF8 is sufficient. This decision is to reduce memory usage by reusing the same string literals internally.
-
Known Issues:
- In some cases, an async hook ID is set to null.
- In some cases, an error message format is slightly different from node.js's error message, although it contains the same information.
- In some cases, an event listener cannot receive an event thrown by a child process.
- In some cases, a child process cannot obtain values from
process.env
. Worker
is experimental. It should be used with caution.ValueSerializer
is experimental. It should be used with caution.
- node.green provides an overview over supported ECMAScript features in our target version of Node.js,
v14.14
.