deno/std/node
2020-11-07 20:27:07 +01:00
..
_crypto feat(std/node/crypto): randomBytes and pbkdf2 (#8191) 2020-10-29 22:53:27 -04:00
_fs build: migrate to dlint (#8176) 2020-11-03 16:19:29 +01:00
_util build: migrate to dlint (#8176) 2020-11-03 16:19:29 +01:00
tests build: migrate to dlint (#8176) 2020-11-03 16:19:29 +01:00
_errors.ts feat(std/node): implement getSystemErrorName() (#7624) 2020-09-22 16:07:35 -04:00
_utils.ts build: migrate to dlint (#8176) 2020-11-03 16:19:29 +01:00
assert.ts feat(fmt): Sort named import and export specifiers (#7711) 2020-09-27 12:22:32 +02:00
assert_test.ts feat(fmt): Sort named import and export specifiers (#7711) 2020-09-27 12:22:32 +02:00
assertion_error.ts build: migrate to dlint (#8176) 2020-11-03 16:19:29 +01:00
assertion_error_test.ts feat(fmt): Sort named import and export specifiers (#7711) 2020-09-27 12:22:32 +02:00
buffer.ts fix(std/node): only define Node.js globals when loading std/node/global (#8281) 2020-11-07 20:27:07 +01:00
buffer_test.ts fix(std/node): Buffer.copy doesn't work as expected (#8125) 2020-10-26 15:42:36 +01:00
crypto.ts feat(std/node/crypto): randomBytes and pbkdf2 (#8191) 2020-10-29 22:53:27 -04:00
events.ts build: migrate to dlint (#8176) 2020-11-03 16:19:29 +01:00
events_test.ts build: migrate to dlint (#8176) 2020-11-03 16:19:29 +01:00
fs.ts feat(std/node/fs): add realpath and realpathSync (#8169) 2020-11-02 19:11:42 +01:00
global.ts fix(std/node): only define Node.js globals when loading std/node/global (#8281) 2020-11-07 20:27:07 +01:00
module.ts build: migrate to dlint (#8176) 2020-11-03 16:19:29 +01:00
module_test.ts build: migrate to dlint (#8176) 2020-11-03 16:19:29 +01:00
os.ts build: migrate to dlint (#8176) 2020-11-03 16:19:29 +01:00
os_test.ts feat(fmt): Sort named import and export specifiers (#7711) 2020-09-27 12:22:32 +02:00
path.ts chore: add copyright (#7593) 2020-09-21 08:26:41 -04:00
process.ts fix(std/node): only define Node.js globals when loading std/node/global (#8281) 2020-11-07 20:27:07 +01:00
process_test.ts feat(fmt): Sort named import and export specifiers (#7711) 2020-09-27 12:22:32 +02:00
querystring.ts docs(std/node/querystring): add missing JSDoc (#8242) 2020-11-04 12:03:59 -05:00
querystring_test.ts feat(fmt): Sort named import and export specifiers (#7711) 2020-09-27 12:22:32 +02:00
README.md docs(std): version all imports in README (#7442) 2020-10-04 14:18:36 +02:00
string_decoder.ts Use dprint for internal formatting (#6682) 2020-07-14 15:24:17 -04:00
string_decoder_test.ts chore: add copyright (#7593) 2020-09-21 08:26:41 -04:00
timers.ts build: migrate to dlint (#8176) 2020-11-03 16:19:29 +01:00
url.ts docs(std/node/url): Added JSDocs for std/node/url (#7805) 2020-11-06 12:28:00 +11:00
url_test.ts chore: add copyright (#7593) 2020-09-21 08:26:41 -04:00
util.ts docs(std/node/util): add missing JSdoc (#7806) 2020-11-06 12:33:41 +11:00
util_test.ts feat(std/node): implement getSystemErrorName() (#7624) 2020-09-22 16:07:35 -04: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");