https://github.com/exercism/wasm
Exercism exercises in WebAssembly.
https://github.com/exercism/wasm
community-contributions-paused exercism-track maintained-solitary
Last synced: 8 months ago
JSON representation
Exercism exercises in WebAssembly.
- Host: GitHub
- URL: https://github.com/exercism/wasm
- Owner: exercism
- License: mit
- Created: 2022-01-26T23:23:39.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2025-07-09T06:05:35.000Z (11 months ago)
- Last Synced: 2025-09-22T00:37:00.151Z (9 months ago)
- Topics: community-contributions-paused, exercism-track, maintained-solitary
- Language: JavaScript
- Homepage: https://exercism.org/tracks/wasm
- Size: 1.16 MB
- Stars: 13
- Watchers: 5
- Forks: 22
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# Exercism Web Assembly Track
[](https://github.com/exercism/wasm/actions/workflows/configlet.yml)
[](https://github.com/exercism/wasm/actions/workflows/test.yml)
Exercism exercises in Web Assembly.
## Testing
To test the exercises, run `./bin/test`.
This command will iterate over all exercises and check to see if their exemplar/example implementation passes all the tests.
### Track linting
[`configlet`](https://exercism.org/docs/building/configlet) is an Exercism-wide tool for working with tracks. You can download it by running:
```shell
$ ./bin/fetch-configlet
```
Run its [`lint` command](https://exercism.org/docs/building/configlet/lint) to verify if all exercises have all the necessary files and if config files are correct:
```shell
$ ./bin/configlet lint
The lint command is under development.
Please re-run this command regularly to see if your track passes the latest linting rules.
Basic linting finished successfully:
- config.json exists and is valid JSON
- config.json has these valid fields:
language, slug, active, blurb, version, status, online_editor, key_features, tags
- Every concept has the required .md files
- Every concept has a valid links.json file
- Every concept has a valid .meta/config.json file
- Every concept exercise has the required .md files
- Every concept exercise has a valid .meta/config.json file
- Every practice exercise has the required .md files
- Every practice exercise has a valid .meta/config.json file
- Required track docs are present
- Required shared exercise docs are present
```