deno/std/node
2020-08-12 12:01:36 +02:00
..
_fs Use dprint for internal formatting (#6682) 2020-07-14 15:24:17 -04:00
_util chore: use ts-expect-error instead of ts-ignore (#6876) 2020-07-26 10:41:10 -04:00
tests Update to Prettier 2 and use ES Private Fields (#4498) 2020-03-28 13:03:49 -04:00
_utils.ts Use dprint for internal formatting (#6682) 2020-07-14 15:24:17 -04:00
buffer.ts Use dprint for internal formatting (#6682) 2020-07-14 15:24:17 -04:00
buffer_test.ts chore: use ts-expect-error instead of ts-ignore (#6876) 2020-07-26 10:41:10 -04:00
events.ts Use dprint for internal formatting (#6682) 2020-07-14 15:24:17 -04:00
events_test.ts Use dprint for internal formatting (#6682) 2020-07-14 15:24:17 -04:00
fs.ts feat(std/node): fs.writeFileSync polyfill (#5414) 2020-05-15 09:50:27 -04:00
global.ts fix: Make std work with isolatedModules (#7016) 2020-08-12 12:01:36 +02:00
module.ts Use dprint for internal formatting (#6682) 2020-07-14 15:24:17 -04:00
module_test.ts Use dprint for internal formatting (#6682) 2020-07-14 15:24:17 -04:00
os.ts Use dprint for internal formatting (#6682) 2020-07-14 15:24:17 -04:00
os_test.ts Use dprint for internal formatting (#6682) 2020-07-14 15:24:17 -04:00
path.ts std/node: add some Node.js polyfill to require() (#3382) 2019-11-19 16:44:59 -05:00
process.ts fix(std/node/process): env, argv exports (#6455) 2020-06-25 07:18:01 -04:00
process_test.ts Use dprint for internal formatting (#6682) 2020-07-14 15:24:17 -04:00
querystring.ts Use dprint for internal formatting (#6682) 2020-07-14 15:24:17 -04:00
querystring_test.ts Use dprint for internal formatting (#6682) 2020-07-14 15:24:17 -04:00
README.md Doc: Node buffer is now supported (#6274) 2020-06-13 09:58:08 -04:00
string_decoder.ts Use dprint for internal formatting (#6682) 2020-07-14 15:24:17 -04:00
string_decoder_test.ts Use dprint for internal formatting (#6682) 2020-07-14 15:24:17 -04:00
timers.ts fix: setTimeout and friends have too strict types (#5412) 2020-05-15 09:51:49 -04:00
url.ts Use dprint for internal formatting (#6682) 2020-07-14 15:24:17 -04:00
util.ts Use dprint for internal formatting (#6682) 2020-07-14 15:24:17 -04:00
util_test.ts refactor: Don't destructure the Deno namespace (#6268) 2020-06-12 15:23:38 -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/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");