Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion doc/api/cli.md
Original file line number Diff line number Diff line change
Expand Up @@ -1039,9 +1039,13 @@ It is possible to run code containing inline types unless the
added:
- v23.6.0
- v22.20.0
changes:
- version: REPLACEME
pr-url: https://github.com/nodejs/node/pull/64221
description: This is enabled by default.
-->

> Stability: 1.0 - Early development
> Stability: 1.2 - Release candidate
Enable experimental import support for `.node` addons.

Expand Down
2 changes: 1 addition & 1 deletion src/node_options.h
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ class EnvironmentOptions : public Options {
bool require_module = true;
std::string dns_result_order;
bool enable_source_maps = false;
bool experimental_addon_modules = EXPERIMENTALS_DEFAULT_VALUE;
bool experimental_addon_modules = true;
bool experimental_eventsource = EXPERIMENTALS_DEFAULT_VALUE;
bool experimental_ffi = EXPERIMENTALS_DEFAULT_VALUE;
bool experimental_websocket = true;
Expand Down
Loading