We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Review and try to remove built-in Node.js module dependencies, so they are not bundled when building for web.
path
process
stream
readable-stream
buffer
Uint8Array
Buffer
util
util.inherits()
internal/errors.ts
assert
assert.strictEqual()
assert()
url
url.URL
util.format()
util.inspect()
The text was updated successfully, but these errors were encountered:
Hey @streamich shouldn't this list include stream as well since memfs uses Readable, Writable?
Readable
Writable
Sorry, something went wrong.
We will always need some stream implementation, due to fs.createReadStream() and fs.createWriteStream().
fs.createReadStream()
fs.createWriteStream()
Maybe we could explicitly install readable-stream dependency, instead of relying on Node's built-in stream.
No branches or pull requests
Review and try to remove built-in Node.js module dependencies, so they are not bundled when building for web.
path
process
stream
— is there a way to make thestream
module optional?readable-stream
as required dependency.buffer
— create a thin wrapper aroundUint8Array
, whenBuffer
global is missing.util
util.inherits()
internal/errors.ts
— Node-like errors vendored moduleassert
assert.strictEqual()
assert()
url
url.URL
util
util.format()
util.inspect()
The text was updated successfully, but these errors were encountered: