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
2024-11-19 16:49:25 +05:30
..
_fs feat(ext/fs): add ctime to Deno.stats and use it in node compat layer (#24801) 2024-11-13 13:35:04 +09:00
_process fix(ext/node): allow writing to tty columns (#26201) 2024-10-14 14:00:02 +05:30
_util
assert
dns
fs
inspector fix(ext/node): better inspector support (#26471) 2024-11-06 14:08:26 +00:00
internal fix(node/crypto): support promisify on generateKeyPair (#26913) 2024-11-19 01:39:40 +01:00
internal_binding fix(ext/node): add autoSelectFamily option to net.createConnection (#26661) 2024-11-12 19:54:47 +09:00
path
readline
stream
timers
util
00_globals.js
01_require.js feat(node): stabilize detecting if CJS via "type": "commonjs" in a package.json (#26439) 2024-11-13 15:10:09 +00:00
02_init.js
_brotli.js
_events.d.ts
_events.mjs
_global.d.ts
_http_agent.mjs
_http_common.ts
_http_outgoing.ts
_http_server.ts
_next_tick.ts fix: report exceptions from nextTick (#26579) 2024-10-28 18:16:43 +01:00
_readline.d.ts
_readline.mjs
_readline_shared_types.d.ts
_stream.d.ts
_stream.mjs
_tls_common.ts
_tls_wrap.ts fix(node:tls): set TLSSocket.alpnProtocol for client connections (#26476) 2024-10-23 07:47:43 +00:00
_utils.ts fix(ext/node): use ERR_NOT_IMPLEMENTED for notImplemented (#26853) 2024-11-13 19:47:01 +05:30
_zlib.mjs fix(node:zlib): gzip & gzipSync should accept ArrayBuffer (#26762) 2024-11-06 15:12:24 +01:00
_zlib_binding.mjs
assert.ts
assertion_error.ts
async_hooks.ts
buffer.ts
child_process.ts fix(child_process): map node --no-warnings flag to --quiet (#26288) 2024-10-16 18:25:25 +00:00
cluster.ts
console.ts
constants.ts
crypto.ts
dgram.ts
diagnostics_channel.js
dns.ts
domain.ts
events.ts
fs.ts
http.ts fix(ext/node): return this from http.Server.ref/unref() (#26647) 2024-10-30 20:13:32 +00:00
http2.ts fix(ext/node): handle http2 server ending stream (#26235) 2024-10-15 23:35:10 +05:30
https.ts Revert "fix(ext/node): use primordials in ext/node/polyfills/https.ts (#26323)" (#26613) 2024-10-29 00:41:02 +00:00
inspector.js fix(ext/node): better inspector support (#26471) 2024-11-06 14:08:26 +00:00
net.ts fix(ext/node): add autoSelectFamily option to net.createConnection (#26661) 2024-11-12 19:54:47 +09:00
os.ts fix(node): Implement os.userInfo properly, add missing toPrimitive (#24702) 2024-10-31 22:18:33 -07:00
path.ts
perf_hooks.ts feat(ext/node): perf_hooks.monitorEventLoopDelay() (#26905) 2024-11-19 16:49:25 +05:30
process.ts feat(node): stabilize detecting if CJS via "type": "commonjs" in a package.json (#26439) 2024-11-13 15:10:09 +00:00
punycode.ts
querystring.js
readline.ts
README.md
repl.ts
stream.ts
string_decoder.ts
sys.ts
testing.ts
timers.ts fix(ext/node): New async setInterval function to improve the nodejs compatibility (#26703) 2024-11-16 16:01:19 +01:00
tls.ts
trace_events.ts
tty.js
url.ts
util.ts fix(node/util): export styleText from node:util (#26194) 2024-10-12 19:36:23 +00:00
v8.ts
vm.js chore: update dlint to v0.68.0 for internal (#26711) 2024-11-04 12:17:11 -05:00
wasi.ts
worker_threads.ts fix(node): fix worker_threads issues blocking Angular support (#26024) 2024-10-04 09:26:32 -07:00
zlib.ts fix(ext/node): zlib.crc32() (#26856) 2024-11-13 20:07:45 +05:30

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 tests/node_compat/runner/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.