Contributions are always welcome, no matter how large or small.
Feel free to open an issue and/or reach out @xtuc.
git clone https://github.com/xtuc/webassemblyjs
cd webassemblyjs
make bootstrap
make build
You can incrementally build the project with the following command:
make watch
WITH_TRACE=1 make build
You can run lint via:
make lint
You can run eslint's autofix via:
make fix
You can run tests via:
make test
You can select test based on their titles:
./scripts/test.sh --grep fsm
The website is located in the directory: website
and uses docusaurus.
The following commands will assume that you already are in the directory.
yarn install
yarn run start
The website will be available at localhost:3000.