deno/std/node
Tim Reichen ae86cbb551
rename(std/testing): rename assert*Contains to assert*Includes (#7951)
This commit renames two assertion functions to better align with JS API:
- assertStringContains -> assertStringIncludes
- assertArrayContains -> assertArrayIncludes
2020-10-26 16:03:30 +01:00
..
_fs upgrade: deno_doc, deno_lint, dprint, swc (#8077) 2020-10-22 20:36:06 +02:00
_util feat(fmt): Sort named import and export specifiers (#7711) 2020-09-27 12:22:32 +02:00
tests upgrade: deno_doc, deno_lint, dprint, swc (#7434) 2020-09-13 14:15:38 +02:00
_errors.ts feat(std/node): implement getSystemErrorName() (#7624) 2020-09-22 16:07:35 -04:00
_utils.ts chore: add copyright (#7593) 2020-09-21 08:26:41 -04: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 feat(std/node): Add AssertionError class (#7210) 2020-09-14 16:22:07 +02: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): Buffer.copy doesn't work as expected (#8125) 2020-10-26 15:42:36 +01:00
buffer_test.ts fix(std/node): Buffer.copy doesn't work as expected (#8125) 2020-10-26 15:42:36 +01:00
events.ts fix(std/node): "events" and "util" modules (#7170) 2020-08-27 11:00:38 +02:00
events_test.ts feat(fmt): Sort named import and export specifiers (#7711) 2020-09-27 12:22:32 +02:00
fs.ts feat(std/fs/node): adding some functions (#7921) 2020-10-14 11:59:28 -04:00
global.ts chore: add copyright (#7593) 2020-09-21 08:26:41 -04:00
module.ts feat(fmt): Sort named import and export specifiers (#7711) 2020-09-27 12:22:32 +02:00
module_test.ts rename(std/testing): rename assert*Contains to assert*Includes (#7951) 2020-10-26 16:03:30 +01:00
os.ts fix(std/node): "events" and "util" modules (#7170) 2020-08-27 11:00:38 +02: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 chore: add copyright (#7593) 2020-09-21 08:26:41 -04:00
process_test.ts feat(fmt): Sort named import and export specifiers (#7711) 2020-09-27 12:22:32 +02:00
querystring.ts feat: update to TypeScript 4.0 (#6514) 2020-08-24 19:43:54 -04: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 chore: add copyright (#7593) 2020-09-21 08:26:41 -04:00
url.ts feat(fmt): Sort named import and export specifiers (#7711) 2020-09-27 12:22:32 +02:00
url_test.ts chore: add copyright (#7593) 2020-09-21 08:26:41 -04:00
util.ts feat(std/node): implement getSystemErrorName() (#7624) 2020-09-22 16:07:35 -04: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");