0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-10-29 08:58:01 -04:00
denoland-deno/cli
Matt Mastracci 68607b593f
perf(cli): strace mode for ops (undocumented) (#21131)
Example usage:

```
# Trace every op except op_*tick*
cargo run -- run --unstable -A --strace-ops=-tick '/Users/matt/Documents/github/deno/deno/ext/websocket/autobahn/autobahn_server.js

# Trace any op matching op_*http*
cargo run -- run --unstable -A --strace-ops=http ...
```

Example output:

```
[    11.478] op_ws_get_buffer                        : Dispatched Slow
[    11.478] op_ws_get_buffer                        : Completed Slow
[    11.478] op_ws_send_binary                       : Dispatched Fast
[    11.478] op_ws_send_binary                       : Completed Fast
[    11.478] op_ws_next_event                        : Dispatched Async
[    11.478] op_try_close                            : Dispatched Fast
[    11.478] op_try_close                            : Completed Fast
[    11.478] op_timer_handle                         : Dispatched Fast
[    11.478] op_timer_handle                         : Completed Fast
[    11.478] op_sleep                                : Dispatched Asyn
```
2023-11-10 10:41:24 -07:00
..
args perf(cli): strace mode for ops (undocumented) (#21131) 2023-11-10 10:41:24 -07:00
bench build: fix lsp benchmark (#20969) 2023-10-25 03:13:16 +00:00
cache refactor: break out ModuleInfoCache from ParsedSourceCache (#20977) 2023-10-25 18:13:22 -04:00
js chore: use internal namespace in 40_testing.js (#21141) 2023-11-10 14:34:41 +00:00
lsp fix(node): use closest package.json to resolve package.json imports (#21075) 2023-11-04 16:41:51 +00:00
napi chore: forward v1.38.1 release commit to main (#21144) 2023-11-10 18:51:34 +05:30
npm fix(node): use closest package.json to resolve package.json imports (#21075) 2023-11-04 16:41:51 +00:00
ops chore: migrate to new deno_core and metrics (#21057) 2023-11-05 14:27:36 -07:00
schemas feat: precompile JSX (#20962) 2023-11-01 20:30:23 +00:00
standalone perf(cli): strace mode for ops (undocumented) (#21131) 2023-11-10 10:41:24 -07:00
tests chore: use internal namespace in 40_testing.js (#21141) 2023-11-10 14:34:41 +00:00
tools refactor: unify CDP types in a single module (#21094) 2023-11-05 22:58:59 +00:00
tsc fix small Deno.createHttpClient typo in lib.deno.unstable.d.ts (#21115) 2023-11-08 19:34:57 -07:00
util perf: lazy atexit setup (#21053) 2023-11-04 17:30:12 +05:30
auth_tokens.rs chore: update base64 crate (#20877) 2023-10-26 18:39:04 +02:00
build.rs chore: bump deno_core (#21102) 2023-11-07 01:03:48 +00:00
Cargo.toml chore: forward v1.38.1 release commit to main (#21144) 2023-11-10 18:51:34 +05:30
cdp.rs refactor: unify CDP types in a single module (#21094) 2023-11-05 22:58:59 +00: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.38.1 release commit to main (#21144) 2023-11-10 18:51:34 +05:30
emit.rs feat: deno run --unstable-hmr (#20876) 2023-10-31 01:25:58 +01:00
errors.rs refactor: upgrade to deno_ast 0.31 and deno_graph 0.59 (#20965) 2023-10-24 21:43:19 +00:00
factory.rs perf(cli): strace mode for ops (undocumented) (#21131) 2023-11-10 10:41:24 -07:00
file_fetcher.rs feat: support import attributes (#20342) 2023-09-07 09:09:16 -04:00
graph_util.rs feat: deno run --unstable-hmr (#20876) 2023-10-31 01:25:58 +01:00
http_util.rs feat(unstable): add more options to Deno.createHttpClient (#17385) 2023-05-21 03:43:54 +02:00
js.rs build: allow disabling snapshots for dev (#20048) 2023-08-06 01:47:15 +02:00
main.rs refactor: unify CDP types in a single module (#21094) 2023-11-05 22:58:59 +00:00
module_loader.rs refactor: break out ModuleInfoCache from ParsedSourceCache (#20977) 2023-10-25 18:13:22 -04: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 fix(unstable/byonm): improve error messages (#20987) 2023-10-26 21:22:15 -04:00
version.rs refactor: make version and user_agent &'static str (#18400) 2023-03-23 23:27:58 +01:00
worker.rs perf(cli): strace mode for ops (undocumented) (#21131) 2023-11-10 10:41:24 -07: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.