mirror of
https://github.com/denoland/deno.git
synced 2024-11-22 15:06:54 -05:00
de34c7ed29
This PR adds a new `--unstable-node-globals` flag to expose Node globals by default. Fixes https://github.com/denoland/deno/issues/26611 --------- Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com>
8 lines
324 B
Text
8 lines
324 B
Text
error: Uncaught (in promise) ReferenceError: Buffer is not defined
|
|
Buffer;
|
|
^
|
|
at [WILDCARD]buffer.js:1:1
|
|
|
|
info: Buffer is not available in the global scope in Deno.
|
|
hint: Import it explicitly with import { Buffer } from "node:buffer";,
|
|
or run again with --unstable-node-globals flag to add this global.
|