deno/ext/web
Luca Casonato 20c7300412
refactor(ext/http): remove op_http_read (#16096)
We can use Resource::read_return & op_read instead. This allows HTTP
request bodies to participate in FastStream.

To make this work, `readableStreamForRid` required a change to allow non
auto-closing resources to be handled. This required some minor changes
in our FastStream paths in ext/http and ext/flash.
2022-09-30 07:54:12 +02:00
..
benches perf: use fast api for op_now (#15643) 2022-08-28 12:21:49 +05:30
00_infra.js perf(ops): Monomorphic sync op calls (#15337) 2022-08-11 15:56:56 +02:00
01_dom_exception.js fix(ext/web): align DOMException better with spec (#15097) 2022-07-20 10:12:18 +02:00
01_mimesniff.js cleanup(web, fetch): dedupe minesniff / "extract a MIME type" algorithm (#14044) 2022-03-20 14:31:12 +01:00
02_event.js fix(repl): don't terminate on unhandled error events (#15548) 2022-09-02 12:43:39 +02:00
02_structured_clone.js fix(core): Don't override structured clone error messages from V8 (#13942) 2022-03-14 19:35:15 +01:00
02_timers.js feat(ops): Automatic fast ops creation (#15527) 2022-09-22 10:05:24 +05:30
03_abort_signal.js feat(ext/web): Add AbortSignal.timeout() (#13687) 2022-03-14 20:19:22 +01:00
04_global_interfaces.js chore: update copyright to 2022 (#13306) 2022-01-07 22:09:52 -05:00
05_base64.js perf(ops): Monomorphic sync op calls (#15337) 2022-08-11 15:56:56 +02:00
06_streams.js refactor(ext/http): remove op_http_read (#16096) 2022-09-30 07:54:12 +02:00
06_streams_types.d.ts chore: update copyright year (#13434) 2022-01-20 16:10:16 +09:00
08_text_encoding.js perf(web): optimize encodeInto() (#15922) 2022-09-17 16:48:15 +05:30
09_file.js perf(ops): Monomorphic sync op calls (#15337) 2022-08-11 15:56:56 +02:00
10_filereader.js refactor: update runtime code for primordial check for iterators (#13510) 2022-02-07 13:54:32 +01:00
11_blob_url.js perf(ops): Monomorphic sync op calls (#15337) 2022-08-11 15:56:56 +02:00
12_location.js chore: update copyright to 2022 (#13306) 2022-01-07 22:09:52 -05:00
13_message_port.js perf(ops): Monomorphic sync op calls (#15337) 2022-08-11 15:56:56 +02:00
14_compression.js perf(ops): Monomorphic sync op calls (#15337) 2022-08-11 15:56:56 +02:00
15_performance.js fix: make Performance global an EventTarget 2022-06-16 12:05:33 -04:00
blob.rs chore(runtime): Make some ops in ext and runtime infallible. (#14589) 2022-05-13 10:36:31 +02:00
Cargo.toml 1.26.0 2022-09-29 00:10:44 +02:00
compression.rs perf(ops): inline &[u8] arguments and enable fast API (#15731) 2022-09-07 16:21:47 +05:30
internal.d.ts feat(ext/web): implement static Response.json (#14566) 2022-05-13 14:28:05 +02:00
lib.deno_web.d.ts fix(docs): add missing categories (#15684) 2022-08-30 13:16:56 +02:00
lib.rs perf(web): optimize encodeInto() (#15922) 2022-09-17 16:48:15 +05:30
message_port.rs chore(web, worker): Use DetachedBuffer for postMessage ops (#15133) 2022-07-11 17:27:33 +02:00
README.md Rename extensions/ directory to ext/ (#11643) 2021-08-11 12:27:05 +02:00
timers.rs perf(ops): inline &[u8] arguments and enable fast API (#15731) 2022-09-07 16:21:47 +05:30

deno web

Op crate that implements Event, TextEncoder, TextDecoder and File API (https://w3c.github.io/FileAPI).

Testing for text encoding is done via WPT in cli/.