1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-29 16:30:56 -05:00
denoland-deno/ext/io
David Sherret 28aa489de9
feat(compile): unstable npm and node specifier support (#19005)
This is the initial support for npm and node specifiers in `deno
compile`. The npm packages are included in the binary and read from it via
a virtual file system. This also supports the `--node-modules-dir` flag,
dependencies specified in a package.json, and npm binary commands (ex.
`deno compile --unstable npm:cowsay`)

Closes #16632
2023-05-10 20:06:59 -04:00
..
12_io.js feat(core): sync io ops in core (#18603) 2023-04-06 00:14:16 +02:00
Cargo.toml refactor(ext/fs): boxed deno_fs::FileSystem (#18945) 2023-05-04 14:28:42 -04:00
fs.rs feat(compile): unstable npm and node specifier support (#19005) 2023-05-10 20:06:59 -04:00
lib.rs refactor(ext/fs): boxed deno_fs::FileSystem (#18945) 2023-05-04 14:28:42 -04:00
README.md refactor(runtime): factor out deno_io extension crate (#18001) 2023-03-05 00:39:48 +00:00

deno_io

This crate provides IO primitives for other Deno extensions, this includes stdio streams and abstraction over File System files.