std/node
2021-02-03 11:48:34 -05:00
..
_crypto fix(node): Stop callbacks being called twice when callback throws error (denoland/deno#8867) 2021-02-01 10:46:59 +00:00
_fs test(node): fix assertStats if atime, mtime or birthtime are null (denoland/deno#9311) 2021-02-01 10:46:59 +00:00
_stream chore: fixed various misspellings and other typos (denoland/deno#8691) 2021-02-01 10:46:58 +00:00
_util update copyright to 2021 (denoland/deno#9081) 2021-02-01 10:46:59 +00:00
testdata test(node): Prevent fixture from being run as a test (#701) 2021-02-03 11:48:34 -05:00
tests chore: make lint and format pass by default (#686) 2021-02-01 17:56:42 +01:00
_errors.ts feat(node/stream): Add Duplex, Transform, Passthrough, pipeline, finished and promises (denoland/deno#7940) 2021-02-01 10:46:58 +00:00
_utils.ts fix(node): Stop callbacks being called twice when callback throws error (denoland/deno#8867) 2021-02-01 10:46:59 +00:00
assert_test.ts update copyright to 2021 (denoland/deno#9081) 2021-02-01 10:46:59 +00:00
assert.ts update copyright to 2021 (denoland/deno#9081) 2021-02-01 10:46:59 +00:00
assertion_error_test.ts update copyright to 2021 (denoland/deno#9081) 2021-02-01 10:46:59 +00:00
assertion_error.ts update copyright to 2021 (denoland/deno#9081) 2021-02-01 10:46:59 +00:00
buffer_test.ts update copyright to 2021 (denoland/deno#9081) 2021-02-01 10:46:59 +00:00
buffer.ts update copyright to 2021 (denoland/deno#9081) 2021-02-01 10:46:59 +00:00
crypto.ts update copyright to 2021 (denoland/deno#9081) 2021-02-01 10:46:59 +00:00
events_test.ts update copyright to 2021 (denoland/deno#9081) 2021-02-01 10:46:59 +00:00
events.ts update copyright to 2021 (denoland/deno#9081) 2021-02-01 10:46:59 +00:00
fs.ts update copyright to 2021 (denoland/deno#9081) 2021-02-01 10:46:59 +00:00
global_test.ts chore: Enforce ban-untagged-todo lint rule (denoland/deno#9135) 2021-02-01 10:46:59 +00:00
global.d.ts feat(node): Add support for process.on("exit") (denoland/deno#8940) 2021-02-01 10:46:59 +00:00
global.ts feat(node): Add support for process.on("exit") (denoland/deno#8940) 2021-02-01 10:46:59 +00:00
module_test.ts update copyright to 2021 (denoland/deno#9081) 2021-02-01 10:46:59 +00:00
module.ts fix(node): replace uses of window with globalThis (denoland/deno#9237) 2021-02-01 10:46:59 +00:00
os_test.ts update copyright to 2021 (denoland/deno#9081) 2021-02-01 10:46:59 +00:00
os.ts feat(node): Added os.type (denoland/deno#8591) 2021-02-01 10:46:58 +00:00
path.ts update copyright to 2021 (denoland/deno#9081) 2021-02-01 10:46:59 +00:00
process_test.ts test(node): Prevent fixture from being run as a test (#701) 2021-02-03 11:48:34 -05:00
process.ts feat(node): Add support for process.on("exit") (denoland/deno#8940) 2021-02-01 10:46:59 +00:00
querystring_test.ts update copyright to 2021 (denoland/deno#9081) 2021-02-01 10:46:59 +00:00
querystring.ts update copyright to 2021 (denoland/deno#9081) 2021-02-01 10:46:59 +00:00
README.md fix(node): Stop callbacks being called twice when callback throws error (denoland/deno#8867) 2021-02-01 10:46:59 +00:00
stream_test.ts feat(node/stream): Add Duplex, Transform, Passthrough, pipeline, finished and promises (denoland/deno#7940) 2021-02-01 10:46:58 +00:00
stream.ts feat(node/stream): Add Duplex, Transform, Passthrough, pipeline, finished and promises (denoland/deno#7940) 2021-02-01 10:46:58 +00:00
string_decoder_test.ts update copyright to 2021 (denoland/deno#9081) 2021-02-01 10:46:59 +00:00
string_decoder.ts fix(node): Inline default objects to ensure correct prototype (denoland/deno#8513) 2021-02-01 10:46:58 +00:00
timers.ts fix(node): replace uses of window with globalThis (denoland/deno#9237) 2021-02-01 10:46:59 +00:00
url_test.ts update copyright to 2021 (denoland/deno#9081) 2021-02-01 10:46:59 +00:00
url.ts chore: Enforce ban-untagged-todo lint rule (denoland/deno#9135) 2021-02-01 10:46:59 +00:00
util_test.ts update copyright to 2021 (denoland/deno#9081) 2021-02-01 10:46:59 +00:00
util.ts update copyright to 2021 (denoland/deno#9081) 2021-02-01 10:46:59 +00:00

Deno Node compatibility

This module is meant to have a compatibility layer for the NodeJS 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 Builtins

  • assert
  • buffer
  • child_process
  • cluster
  • console
  • crypto
  • dgram
  • dns
  • events
  • fs partly
  • http
  • http2
  • https
  • module
  • net
  • os partly
  • path
  • perf_hooks
  • process partly
  • querystring
  • readline
  • repl
  • stream
  • string_decoder
  • sys
  • timers
  • tls
  • tty
  • url
  • util partly
  • v8 can't implement
  • vm
  • worker_threads
  • zlib
  • node globals partly

Deprecated

These builtins are deprecated in NodeJS v13 and will probably not be polyfilled:

  • constants
  • domain
  • freelist
  • punycode

Experimental

These builtins are experimental in NodeJS v13 and will not be polyfilled until they are stable:

  • async_hooks
  • inspector
  • policies
  • report
  • trace_events
  • wasi

CommonJS Module Loading

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

import { createRequire } from "https://deno.land/std@$STD_VERSION/node/module.ts";

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

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.