0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-01-31 11:49:31 -05:00
denoland-deno/extensions/fetch
Justin Chase 02c74fb709
feat(tls): Optionally support loading native certs (#11491)
This commit adds "DENO_TLS_CA_STORE" env variable to support 
optionally loading certificates from the users local certificate store. 
This will allow them to successfully connect via tls with corporate 
and self signed certs provided they have them installed in their keystore. 
It also allows them to deal with revoked certs by simply updating 
their keystore without having to upgrade Deno.

Currently supported values are "mozilla", "system" or empty value.
2021-08-07 14:49:38 +02:00
..
01_fetch_util.js refactor: use primordials in extensions/fetch (#11266) 2021-07-06 11:32:59 +02:00
20_headers.js refactor: use primordials in extensions/fetch (#11266) 2021-07-06 11:32:59 +02:00
21_formdata.js refactor: use primordials in extensions/fetch (#11266) 2021-07-06 11:32:59 +02:00
22_body.js refactor: use primordials in runtime, extensions and core (#11500) 2021-07-26 13:52:59 +02:00
22_http_client.js refactor: move streams implementation to deno_web crate (#10935) 2021-06-14 13:51:02 +02:00
23_request.js fix: inspecting prototypes of built-ins with custom inspect implementations should not throw (#11308) 2021-07-08 09:43:36 -04:00
23_response.js fix: inspecting prototypes of built-ins with custom inspect implementations should not throw (#11308) 2021-07-08 09:43:36 -04:00
26_fetch.js Revert "fix(extensions/fetch): Add Origin header to outgoing requests for fetch (#11557)" (#11565) 2021-08-02 15:56:52 +02:00
Cargo.toml feat(tls): Optionally support loading native certs (#11491) 2021-08-07 14:49:38 +02:00
internal.d.ts refactor(FormData): refactor formdata serializer to support async blob backing (#11050) 2021-06-22 14:06:37 +02:00
lib.deno_fetch.d.ts refactor: move streams implementation to deno_web crate (#10935) 2021-06-14 13:51:02 +02:00
lib.rs feat(tls): Optionally support loading native certs (#11491) 2021-08-07 14:49:38 +02:00
README.md Rename crate_ops to extensions (#10431) 2021-04-30 15:51:48 -04:00

deno_fetch

This crate implements the Fetch API.

Spec: https://fetch.spec.whatwg.org/