deno/runtime/js
Bartek Iwańczuk a1bcdf17a5
feat(jupyter): Add Deno.jupyter.image API (#26284)
This commit adds `Deno.jupyter.image` API to display PNG and JPG images:

```
const data = Deno.readFileSync("./my-image.jpg");
Deno.jupyter.image(data);

Deno.jupyter.image("./my-image.jpg");
```
2024-11-16 15:13:50 +00:00
..
01_errors.js
01_version.ts
06_util.js
10_permissions.js
11_workers.js
30_os.js
40_fs_events.js fix: share inotify fd across watchers (#26200) 2024-10-23 09:22:58 +05:30
40_process.js
40_signals.js
40_tty.js
41_prompt.js
90_deno_ns.js feat(cli): add --unstable-node-globals flag (#26617) 2024-11-14 13:11:29 +00:00
98_global_scope_shared.js feat(cli): add --unstable-node-globals flag (#26617) 2024-11-14 13:11:29 +00:00
98_global_scope_window.js
98_global_scope_worker.js
99_main.js feat(jupyter): Add Deno.jupyter.image API (#26284) 2024-11-16 15:13:50 +00:00
README.md
telemetry.js fix: otel resiliency (#26857) 2024-11-14 12:16:28 +00:00

Runtime JavaScript Code

This directory contains Deno runtime code written in plain JavaScript.

Each file is an ES module and is prefixed with a number, telling in which order scripts should be loaded into V8 isolate.

Deno Web APIs

This directory facilities Web APIs that are available in Deno.

Please note, that some implementations might not be completely aligned with specification.

Some Web APIs are using ops under the hood, eg. console, performance.

Implemented Web APIs