Boa welcomes contribution from everyone. Here are the guidelines if you are thinking of helping out:
Contributions to Boa or its dependencies should be made in the form of GitHub pull requests. Each pull request will be reviewed by a core contributor (someone with permission to land patches) and either landed in the main tree or given feedback for changes that would be required. All contributions should follow this format.
Should you wish to work on an issue, please claim it first by commenting on the GitHub issue that you want to work on it. This is to prevent duplicated efforts from contributors on the same issue.
Head over to issues and check for "good first issue" labels to find good tasks to start with. If you come across words or jargon that do not make sense, please ask!
If you don't already have Rust installed rustup is the recommended tool to use. It will install Rust and allow you to switch between nightly, stable and beta. You can also install additional components. In Linux, you can run:
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | shThen simply clone this project and cargo build.
You can execute a Boa console by running cargo run, and you can compile a list
of JavaScript files by running cargo run -- file1.js file2.js and so on.
Knowing how to debug the interpreter should help you resolve problems quite quickly. See Debugging.
If you want to develop on the web assembly side you can run yarn serve and then go
to http://localhost:8080.
Either the Rust (RLS) or the Rust Analyzer extensions are preferred. RLS is easier to set up but some of the development is moving towards Rust Analyzer. Both of these plugins will help you with your Rust Development
There are some pre-defined tasks in tasks.json
- Build - shift+cmd/ctrl+b should build and run cargo. You should be able to make changes and run this task.
- Test - (there is no shortcut, you'll need to make one) - Runs
Cargo Test. I personally set a shortcut of shift+cmd+option+T (or shift+ctrl+alt+T)
Boa provides its own test suite, and can also run the official ECMAScript test suite. To run the Boa test
suite, you can just run the normal cargo test, and to run the full ECMAScript test suite, you can run it
with this command:
cargo run --release --bin boa_tester -- run -v 2> error.logThis will run the test suite in verbose mode (you can remove the -v part to run it in non-verbose mode),
and output nice colorings in the terminal. It will also output any panic information into the error.log file.
You can get some more verbose information that tells you the exact name of each test that is being run, useful
for debugging purposes by setting up the verbose flag twice, for example -vv. If you want to know the output of
each test that is executed, you can use the triple verbose (-vvv) flag.
If you want to only run one sub-suite or even one test (to just check if you fixed/broke something specific),
you can do it with the -s parameter, and then passing the path to the sub-suite or test that you want to run. Note
that the -s parameter value should be a path relative to the test262 directory. For example, to run the number
type tests, use -s test/language/types/number.
Finally, if you're using the verbose flag and running a sub suite with a small number of tests, then the output will
be more readable if you disable parallelism with the -d flag. All together it might look something like:
cargo run --release --bin boa_tester -- run -vv -d -s test/language/types/number 2> error.logTo save test results for later comparison, use the -o flag to specify an output directory:
cargo run --release --bin boa_tester -- run -o ./test-resultsYou can compare two test suite runs to see what changed:
cargo run --release --bin boa_tester -- compare <base-results> <new-results>Both arguments can be either result files (e.g., latest.json) or directories containing test results.
When directories are provided, the tester automatically uses the latest.json file from each directory.
For example:
# Compare using directories
cargo run --release --bin boa_tester -- compare ./test-results-main ./test-results-feature
# Compare using explicit files
cargo run --release --bin boa_tester -- compare ./test-results-main/latest.json ./test-results-feature/latest.jsonTo build the development documentation, run:
cargo doc --all-features --document-private-items --workspaceThis will also document all the dependencies on the workspace, which could be heavier in size.
To only generate documentation for the workspace members, just add the --no-deps flag:
cargo doc --all-features --document-private-items --workspace --no-depsMany contributions to Boa involve implementing parts of the ECMAScript Language Specification, which defines how JavaScript behaves. At first, the spec can seem intimidating, but it quickly becomes easier to follow once you get familiar with its structure and notation.
The specification is written in a pseudo-language designed to describe behavior without being tied to any particular programming language. It introduces some important concepts:
- Abstract operations – general algorithms (i.e.
IsCallable), which usually map to Rust functions or methods. - Internal slots – hidden object fields like
[[Prototype]]that correspond to private struct or enum fields in Rust, not accessible to JavaScript. - Completion records – describe how values or exceptions are returned
(link),
and typically map to
JsResulttypes in Rust. - Symbols
?and!–? Foo(...)propagates exceptions mapped to propagate?operator in rust, while! Foo(...)are infallible operations and are usually mapped toResult::expect()call.
For an in-depth introduction to these concepts and more, check out V8’s “Understanding the ECMAScript spec” series, starting with Part 1.
When implementing the spec in Boa, try to map your code to the corresponding spec steps whenever possible, and indicate in comments which steps are implemented. This makes the code easier to understand, ensures it aligns with the specification, and helps reviewers and future contributors follow the logic.
If a spec step does not map directly because of Rust limitations or performance reasons, just add a note in the code explaining the difference. Being clear about these cases helps others understand your implementation while still following the spec as closely as possible.
For examples of how to implement the specification, check out the built-in implementations in Boa here.
If anything in the specification is confusing, don’t hesitate to ask in the Boa Matrix channel.
For contributors looking to learn JavaScript and how it works, check out the Mozilla Developer Guided Tours.
We have a Matrix space, feel free to ask questions here: https://matrix.to/#/#boa:matrix.org