deno/cli
Jovi De Croock 08fc8d50e3
fix(node/zlib): cast Dataview and Buffer to uint8 (#21746)
This fixes point 2 of #20516 

This adds a conversion from Dataview/Buffer by returning `obj.buffer`
which can be converted to a `UInt8Array`.

Question: Regarding point 4 of the mentioned issue would it be
appropriate to copy the toU8 helper to the `zlib.mjs` methods?
2023-12-31 17:20:37 +05:30
..
args fix(node): child_process IPC on Windows (#21597) 2023-12-19 13:37:22 +01:00
bench perf: remove opAsync (#21690) 2023-12-27 02:30:26 +01:00
cache refactor: better handling for registry urls (#21545) 2023-12-12 23:45:20 +09:00
js feat: bring back WebGPU (#20812) 2023-12-09 01:19:16 +01:00
lsp perf(lsp): use LanguageServiceHost::getProjectVersion() (#21719) 2023-12-28 00:13:57 +00:00
napi chore: forward v1.39.1 commit to main (#21667) (#21671) 2023-12-21 18:43:52 +00:00
npm fix(npm): do not create symlink for non-system optional dep in node_modules directory (#21478) 2023-12-06 14:24:00 -05:00
ops chore(ext/node): use BufView natively in http2 (#21688) 2023-12-23 08:58:20 -07:00
schemas feat: precompile JSX (#20962) 2023-11-01 20:30:23 +00:00
standalone fix: implement child_process IPC (#21490) 2023-12-13 11:14:16 +01:00
tests fix(node/zlib): cast Dataview and Buffer to uint8 (#21746) 2023-12-31 17:20:37 +05:30
tools chore: update deno_doc to 0.85.0 (#21678) 2023-12-30 00:04:50 +00:00
tsc fix: Object.groupBy return type should be a partial (#21680) 2023-12-30 00:41:40 +01:00
util refactor: nicer warning display (#21547) 2023-12-12 23:45:45 +09:00
auth_tokens.rs chore: update base64 crate (#20877) 2023-10-26 18:39:04 +02:00
build.rs feat: bring back WebGPU (#20812) 2023-12-09 01:19:16 +01:00
Cargo.toml chore: update deno_doc to 0.85.0 (#21678) 2023-12-30 00:04:50 +00:00
cdp.rs refactor: factor out cdp::ExceptionThrown notification (#21623) 2023-12-18 11:43:02 +01:00
deno.ico fix(cli): add icon and metadata to deno.exe on Windows (#6693) 2020-07-15 21:54:38 +02:00
deno_std.rs chore: forward v1.39.1 commit to main (#21667) (#21671) 2023-12-21 18:43:52 +00:00
emit.rs feat: deno run --unstable-hmr (#20876) 2023-10-31 01:25:58 +01:00
entitlements.plist chore: start codesigning mac release builds (#21303) 2023-11-23 15:30:26 -07:00
errors.rs fix: improve deno doc --lint error messages (#21156) 2023-11-10 18:40:39 +00:00
factory.rs fix: implement child_process IPC (#21490) 2023-12-13 11:14:16 +01:00
file_fetcher.rs chore: fix and deflake cert store fetch tests (#21241) 2023-11-17 19:16:11 +00:00
graph_util.rs feat(lsp): provide quick fixes for specifiers that could be resolved sloppily (#21506) 2023-12-08 09:57:06 -05:00
http_util.rs feat(unstable): tar up directory with deno.json (#21228) 2023-11-23 23:38:07 +00:00
js.rs build: allow disabling snapshots for dev (#20048) 2023-08-06 01:47:15 +02:00
main.rs feat: bring back WebGPU (#20812) 2023-12-09 01:19:16 +01:00
module_loader.rs feat(lsp): provide quick fixes for specifiers that could be resolved sloppily (#21506) 2023-12-08 09:57:06 -05:00
node.rs chore: rename some helpers on the Fs trait (#20097) 2023-08-08 16:28:18 -04:00
README.md docs(cli): do not need gen doc for cli (#17260) 2023-01-04 13:19:58 +01:00
resolver.rs feat(lsp): provide quick fixes for specifiers that could be resolved sloppily (#21506) 2023-12-08 09:57:06 -05:00
version.rs refactor: make version and user_agent &'static str (#18400) 2023-03-23 23:27:58 +01:00
worker.rs fix(node): child_process IPC on Windows (#21597) 2023-12-19 13:37:22 +01:00

Deno CLI Crate

crates

This provides the actual deno executable and the user-facing APIs.

The deno crate uses the deno_core to provide the executable.