Rust编写的JavaScript引擎,该项目是一个试验性质的项目。
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
Aaron Ross 520b81ea66 add README for crates.io publish (#1952) 3 years ago
.github Deploy playground to custom destination dir (#1943) 3 years ago
.vscode
assets
boa_cli add README for crates.io publish (#1952) 3 years ago
boa_engine add README for crates.io publish (#1952) 3 years ago
boa_examples give everything a version 3 years ago
boa_gc add README for crates.io publish (#1952) 3 years ago
boa_interner add README for crates.io publish (#1952) 3 years ago
boa_profiler add README for crates.io publish (#1952) 3 years ago
boa_tester add README for crates.io publish (#1952) 3 years ago
boa_unicode add README for crates.io publish (#1952) 3 years ago
boa_wasm add README for crates.io publish (#1952) 3 years ago
docs
test262@0bccacda69 Bump test262 from `f7fb969` to `0bccacd` (#1928) 3 years ago
.editorconfig
.gitattributes
.gitignore
.gitmodules
.prettierignore
CHANGELOG.md generated changelog for 0.14 (#1882) 3 years ago
CODE_OF_CONDUCT.md
CONTRIBUTING.md
Cargo.lock Bump dyn-clone from 1.0.4 to 1.0.5 (#1946) 3 years ago
Cargo.toml
LICENSE-MIT
LICENSE-UNLICENSE
README.md Fix link to the playground (#1947) 3 years ago
bors.toml
clippy.toml
index.html
index.js
package.json Bump prettier from 2.5.1 to 2.6.0 (#1945) 3 years ago
test_ignore.txt
webpack.config.js
yarn.lock Bump prettier from 2.5.1 to 2.6.0 (#1945) 3 years ago

README.md

Boa

logo

This is an experimental Javascript lexer, parser and interpreter written in Rust. Currently, it has support for some of the language.

Build Status codecov Discord

Live Demo (WASM)

https://boa-dev.github.io/boa/playground/

You can get more verbose errors when running from the command line.

Development documentation

You can check the internal development docs at https://boa-dev.github.io/boa/doc.

Conformance

To know how much of the ECMAScript specification does Boa cover, you can check out results running the ECMASCript Test262 test suite here.

Benchmarks

See Benchmarks.

Contributing

Please, check the CONTRIBUTING.md file to know how to contribute in the project. You will need Rust installed and an editor. We have some configurations ready for VSCode.

Debugging

Check debugging.md for more info on debugging.

Web Assembly

This interpreter can be exposed to javascript! You can build the example locally with:

$ yarn install
$ yarn serve

In the console you can use window.evaluate to pass JavaScript in. To develop on the web assembly side you can run yarn serve then go to http://localhost:8080.

Roadmap

See Milestones.

Changelog

See CHANGELOG.md.

Usage

  • Clone this repo.
  • Run with cargo run -- test.js where test.js is an existing JS file.
  • If any JS doesn't work then it's a bug. Please raise an issue!

Profiling

See Profiling

Command-line Options

USAGE:
    boa [OPTIONS] [FILE]...

FLAGS:
    -h, --help       Prints help information
    -V, --version    Prints version information

OPTIONS:
    -a, --dump-ast <FORMAT>       Dump the abstract syntax tree (ast) to stdout with the given format [possible values: Debug, Json,
                                  JsonPretty]

ARGS:
    <FILE>...    The JavaScript file(s) to be evaluated

Communication

Feel free to contact us on Discord.

Example

Example

License

This project is licensed under the Unlicense or MIT licenses, at your option.