You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I think that (experimental) modules under flags should not be exposed in the REPL if the flag is not set.
Expected: The --experimental-wasi-unstable-preview1 flag must be set normally for this to work.
$ node
Welcome to Node.js v16.8.0.
Type ".help"for more information.
> wasi
Uncaught ReferenceError: wasi is not defined
Currently:
$ node
Welcome to Node.js v16.8.0.
Type ".help"for more information.
> wasi
{ WASI: [class WASI] }
> (node:15508) ExperimentalWarning: WASI is an experimental feature. This feature could change at any time
(Use `node --trace-warnings ...` to show where the warning was created)
The text was updated successfully, but these errors were encountered:
I think that (experimental) modules under flags should not be exposed in the REPL if the flag is not set.
Expected:
The
--experimental-wasi-unstable-preview1
flag must be set normally for this to work.Currently:
The text was updated successfully, but these errors were encountered: