0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-03-04 09:57:11 -05:00
deno/ext/node/polyfills
Yoshiya Hinosawa bf42467e21
fix(ext/node): fix node:stream.Writable (#21297)
This change applies the same fix as
https://github.com/nodejs/node/pull/46818, and the original example
given in #20456 works as expected.

closes #20456
2023-11-23 09:57:05 +09:00
..
_fs fix(polyfill): correctly handle flag when its equal 0 (#20953) 2023-10-22 08:02:55 +00:00
_process fix(ext/node): tty streams extends net socket (#21026) 2023-10-31 17:24:43 +05:30
_util refactor: replace deferred() from std/async with Promise.withResolvers() (#21234) 2023-11-22 12:11:20 +01:00
assert
dns
fs
internal refactor: replace deferred() from std/async with Promise.withResolvers() (#21234) 2023-11-22 12:11:20 +01:00
internal_binding Revert "fix(ext/console): fix inspecting iterators error. (#20720)" (#21191) 2023-11-13 22:16:23 +00:00
path
readline
stream
timers
util
00_globals.js
01_require.js fix(require): use canonicalized path for loading content (#20133) 2023-08-15 09:10:54 +02:00
02_init.js feat(ext/node): eagerly bootstrap node (#20153) 2023-08-16 04:36:36 +09:00
_brotli.js
_events.d.ts
_events.mjs fix(ext/node): don't call undefined nextTick fn (#20724) 2023-10-02 14:13:57 +02:00
_global.d.ts
_http_agent.mjs
_http_common.ts
_http_outgoing.ts feat: support import attributes (#20342) 2023-09-07 09:09:16 -04:00
_next_tick.ts
_readline.d.ts
_readline.mjs
_readline_shared_types.d.ts
_stream.d.ts
_stream.mjs fix(ext/node): fix node:stream.Writable (#21297) 2023-11-23 09:57:05 +09:00
_tls_common.ts
_tls_wrap.ts fix(node): implement TLSSocket._start (#20120) 2023-08-11 11:57:41 +00:00
_utils.ts
_zlib.mjs fix(ext/node): support dictionary option in zlib init (#20035) 2023-08-11 11:42:35 +00:00
_zlib_binding.mjs fix(ext/node): support dictionary option in zlib init (#20035) 2023-08-11 11:42:35 +00:00
assert.ts
assertion_error.ts
async_hooks.ts fix(node/async_hooks): don't pop async context frame if stack if empty (#20077) 2023-08-10 09:00:25 +05:30
buffer.ts
child_process.ts
cluster.ts
console.ts
constants.ts
crypto.ts
dgram.ts
diagnostics_channel.ts
dns.ts
domain.ts
events.ts
fs.ts
http.ts refactor: replace deferred() from std/async with Promise.withResolvers() (#21234) 2023-11-22 12:11:20 +01:00
http2.ts refactor: replace deferred() from std/async with Promise.withResolvers() (#21234) 2023-11-22 12:11:20 +01:00
https.ts fix(node/http): export globalAgent (#21081) 2023-11-11 10:13:30 +05:30
inspector.ts
net.ts
os.ts feat(node/os): Add availableParallelism (#20745) 2023-09-30 19:51:06 +05:30
path.ts
perf_hooks.ts fix(ext/node): add APIs perf_hook.performance (#21192) 2023-11-14 16:33:09 +05:30
process.ts fix(ext/node): implement process.geteuid (#21151) 2023-11-10 11:49:57 -07:00
punycode.ts
querystring.ts
readline.ts
README.md
repl.ts fix(node): repl._builtinLibs (#20046) 2023-08-04 14:30:48 +02:00
stream.ts
string_decoder.ts
sys.ts
testing.ts refactor: replace deferred() from std/async with Promise.withResolvers() (#21234) 2023-11-22 12:11:20 +01:00
timers.ts
tls.ts
tty.js fix(ext/node): tty streams extends net socket (#21026) 2023-10-31 17:24:43 +05:30
url.ts
util.ts fix(ext): use String#toWellFormed in ext/webidl and ext/node (#21054) 2023-11-06 22:18:28 +01:00
v8.ts
vm.ts
wasi.ts
worker_threads.ts
zlib.ts

Deno Node.js compatibility

This module is meant to have a compatibility layer for the Node.js standard library.

Warning: Any function of this module should not be referred anywhere in the Deno standard library as it's a compatibility module.

Supported modules

  • assert
  • assert/strict partly
  • async_hooks partly
  • buffer
  • child_process partly
  • cluster partly
  • console partly
  • constants partly
  • crypto partly
  • dgram partly
  • diagnostics_channel partly
  • dns partly
  • events
  • fs partly
  • fs/promises partly
  • http partly
  • http2
  • https partly
  • inspector partly
  • module
  • net
  • os partly
  • path
  • path/posix
  • path/win32
  • perf_hooks
  • process partly
  • punycode
  • querystring
  • readline
  • repl partly
  • stream
  • stream/promises
  • stream/web partly
  • string_decoder
  • sys
  • timers
  • timers/promises
  • tls
  • trace_events
  • tty partly
  • url
  • util partly
  • util/types partly
  • v8
  • vm partly
  • wasi
  • webcrypto
  • worker_threads
  • zlib
  • node globals partly

Deprecated

These modules are deprecated in Node.js and will probably not be polyfilled:

  • domain
  • freelist

Experimental

These modules are experimental in Node.js and will not be polyfilled until they are stable:

  • diagnostics_channel
  • async_hooks
  • policies
  • trace_events
  • wasi
  • webcrypto

CommonJS modules loading

createRequire(...) is provided to create a require function for loading CJS modules. It also sets supported globals.

import { createRequire } from "node:module";

const require = createRequire(import.meta.url);
// Loads native module polyfill.
const path = require("path");
// Loads extensionless module.
const cjsModule = require("./my_mod");
// Visits node_modules.
const leftPad = require("left-pad");

Contributing

Setting up the test runner and running tests

See tools/node_compat/README.md.

Best practices

When converting from promise-based to callback-based APIs, the most obvious way is like this:

promise.then((value) => callback(null, value)).catch(callback);

This has a subtle bug - if the callback throws an error, the catch statement will also catch that error, and the callback will be called twice. The correct way to do it is like this:

promise.then((value) => callback(null, value), callback);

The second parameter of then can also be used to catch errors, but only errors from the existing promise, not the new one created by the callback.

If the Deno equivalent is actually synchronous, there's a similar problem with try/catch statements:

try {
  const value = process();
  callback(null, value);
} catch (err) {
  callback(err);
}

Since the callback is called within the try block, any errors from it will be caught and call the callback again.

The correct way to do it is like this:

let err, value;
try {
  value = process();
} catch (e) {
  err = e;
}
if (err) {
  callback(err); // Make sure arguments.length === 1
} else {
  callback(null, value);
}

It's not as clean, but prevents the callback being called twice.

Remaining Tests

Node compatibility can be measured by how many native Node tests pass. If you'd like to know what you can work on, check out the list of Node tests remaining here.