mirror of
https://github.com/denoland/deno.git
synced 2024-12-22 07:14:47 -05:00
A modern runtime for JavaScript and TypeScript.
https://deno.com/
f7fdb90fd5
* Moves how snapshots are supplied to the Isolate. Previously they were given by Behavior::startup_data() but it was only called once at startup. It makes more sense (and simplifies Behavior) to pass it to the constructor of Isolate. * Adds new libdeno type deno_snapshot instead of overloading deno_buf. * Adds new libdeno method to delete snapshot deno_snapshot_delete(). * Renames deno_get_snapshot() to deno_snapshot_new(). * Makes StartupData hold references to snapshots. This was implicit when it previously held a deno_buf but is made explicit now. Note that include_bytes!() returns a &'static [u8] and we want to avoid copying that. |
||
---|---|---|
.github | ||
build@89b12c4642 | ||
build_extra | ||
cli | ||
core | ||
js | ||
prebuilt | ||
tests | ||
third_party@1902aba524 | ||
tools | ||
website | ||
.appveyor.yml | ||
.editorconfig | ||
.eslintignore | ||
.eslintrc.json | ||
.gitattributes | ||
.gitignore | ||
.gitmodules | ||
.gn | ||
.prettierignore | ||
.prettierrc.json | ||
.rustfmt.toml | ||
.travis.yml | ||
.yarnclean | ||
BUILD.gn | ||
build_overrides | ||
buildtools | ||
Cargo.lock | ||
Cargo.toml | ||
deno.gni | ||
Docs.md | ||
gclient_config.py | ||
LICENSE | ||
node_modules | ||
package.json | ||
README.md | ||
Releases.md | ||
rollup.config.js | ||
testing | ||
tsconfig.json |
deno
A secure runtime for JavaScript and TypeScript built with V8, Rust, and Tokio.
Linux & Mac | Windows |
---|---|
Deno aims to provide a productive and secure scripting environment for the modern programmer. It is built on top of V8, Rust, and TypeScript.
Please read the introduction for more specifics.