1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-22 07:14:47 -05:00
denoland-deno/runtime/js
Jamie 8c0fb9003d
feat(ext/web): add ImageData Web API (#21183)
Fixes #19288

Adds the `ImageData` Web API. 

This would be beneficial to projects using `ImageData` as a convenient
transport layer for pixel data. This is common in Web Assembly projects
that manipulate images. Having this global available in Deno would
improve compatibility of existing JS libraries.

**References**
- [MDN ImageData Web
API](https://developer.mozilla.org/en-US/docs/Web/API/ImageData)
- [whatwg HTML Standard Canvas
Spec](https://html.spec.whatwg.org/multipage/canvas.html#pixel-manipulation)
2023-12-06 14:20:28 +01:00
..
01_errors.js feat: add more Deno.errors classes (#19514) 2023-06-29 01:46:16 +02:00
01_version.ts refactor: internal runtime code TS support (#17672) 2023-02-08 22:40:18 +01:00
06_util.js perf: lazy bootstrap options - first pass (#21164) 2023-11-13 04:52:59 +00:00
10_permissions.js fix(ext,runtime): add missing custom inspections (#21219) 2023-11-19 09:13:38 +01:00
11_workers.js fix(ext,runtime): add missing custom inspections (#21219) 2023-11-19 09:13:38 +01:00
13_buffer.js chore: Turn back on dlintPreferPrimordials (#17715) 2023-04-02 19:41:41 +02:00
30_os.js chore: use internal namespace in 40_testing.js (#21141) 2023-11-10 14:34:41 +00:00
40_fs_events.js feat: disposable Deno resources (#20845) 2023-11-01 20:26:12 +01:00
40_http.js refactor: rename InternalModuleLoader to ExtModuleLoader, use ext: scheme for snapshotted modules (#18041) 2023-03-08 12:44:54 +01:00
40_process.js perf: remove knowledge of promise IDs from deno (#21132) 2023-11-09 13:57:26 -07:00
40_signals.js perf: remove knowledge of promise IDs from deno (#21132) 2023-11-09 13:57:26 -07:00
40_tty.js chore(cli): remove atty crate (#20275) 2023-08-25 07:43:07 -06:00
41_prompt.js chore: restore pty tests and make them run on the Linux CI (#18424) 2023-03-28 21:49:00 +00:00
90_deno_ns.js feat(unstable): --unstable-unsafe-proto (#21313) 2023-11-25 11:41:21 -05:00
98_global_scope.js feat(ext/web): add ImageData Web API (#21183) 2023-12-06 14:20:28 +01:00
99_main.js feat(unstable): --unstable-unsafe-proto (#21313) 2023-11-25 11:41:21 -05:00
README.md feat: add --location=<href> and globalThis.location (#7369) 2021-01-07 19:06:08 +01:00

Runtime JavaScript Code

This directory contains Deno runtime code written in plain JavaScript.

Each file is a plain, old script, not ES modules. The reason is that snapshotting ES modules is much harder, especially if one needs to manipulate global scope (like in case of Deno).

Each file is prefixed with a number, telling in which order scripts should be loaded into V8 isolate. This is temporary solution and we're striving not to require specific order (though it's not 100% obvious if that's feasible).

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