1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-22 15:06:54 -05:00
denoland-deno/core
Bartek Iwańczuk d062ffc1ba
fix: source maps in inspector (#5223)
This commit fixes problems with source maps in Chrome Devtools
by substituting source map URL generated by TS compiler with
actual file URL pointing to DENO_DIR.

Dummy value of "source_map_url" has been removed from
"ScriptOrigin".

Also fixes lock file which used compiled source code to generate
lock hash; it now uses source code of the file that is
being compiled.
2020-05-11 23:48:36 +02:00
..
examples Rename deno_core::Isolate to deno_core::CoreIsolate (#4851) 2020-04-23 11:51:07 +02:00
any_error.rs Refactor error tracking and scope juggling in deno_core (#3783) 2020-01-25 14:31:42 +01:00
bindings.rs fix: source maps in inspector (#5223) 2020-05-11 23:48:36 +02:00
Cargo.toml 1.0.0-rc2 2020-05-09 15:37:22 -04:00
encode_decode_test.js perf: Optimize TextEncoder and TextDecoder (#4430) 2020-03-19 21:31:56 +01:00
es_isolate.rs refactor(core): add "prepare_load" hook to ModuleLoader trait (#4866) 2020-04-30 14:37:06 +02:00
flags.rs Replace libdeno with rusty_v8 (#3556) 2020-01-05 09:19:29 -05:00
isolate.rs Allow starting isolate from snapshot bytes on the heap (#5187) 2020-05-10 03:00:40 +02:00
js_errors.rs fix misaligned error reporting on tab char (#5032) 2020-05-01 13:03:54 -04:00
lib.rs Change plugin interface to prevent segfaults when unloading plugin (#5210) 2020-05-11 22:39:13 +02:00
module_specifier.rs adding missing test cases for <unknown> base (#4988) 2020-04-30 03:10:28 -04:00
modules.rs refactor(core): add "prepare_load" hook to ModuleLoader trait (#4866) 2020-04-30 14:37:06 +02:00
ops.rs Rename deno_core::Isolate to deno_core::CoreIsolate (#4851) 2020-04-23 11:51:07 +02:00
plugin_api.rs Change plugin interface to prevent segfaults when unloading plugin (#5210) 2020-05-11 22:39:13 +02:00
README.md update readmes (#3765) 2020-01-23 22:32:52 +01:00
resources.rs feat: startTLS (#4773) 2020-04-18 11:21:20 -04:00
shared_queue.js Update to Prettier 2 and use ES Private Fields (#4498) 2020-03-28 13:03:49 -04:00
shared_queue.rs Upgrade to rusty_v8 v0.4.0 (#4856) 2020-04-23 03:35:52 +02:00
shared_queue_test.js perf: use subarray instead of slice in dispatch minimal (#4180) 2020-03-01 17:17:59 -05:00

Deno Core Crate

crates docs

The main dependency of this crate is rusty_v8, which provides the V8-Rust bindings.

This Rust crate contains the essential V8 bindings for Deno's command-line interface (Deno CLI). The main abstraction here is the Isolate which provides a way to execute JavaScript. The Isolate is modeled as a Future<Item=(), Error=JSError> which completes once all of its ops have completed.

In order to bind Rust functions into JavaScript, use the Deno.core.dispatch() function to trigger the "dispatch" callback in Rust. The user is responsible for encoding both the request and response into a Uint8Array.

Documentation for this crate is thin at the moment. Please see http_bench.rs as a simple example of usage.

TypeScript support and a lot of other functionality is not available at this layer. See the cli for that.