Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/AssemblyScript/assemblyscript
A TypeScript-like language for WebAssembly.
https://github.com/AssemblyScript/assemblyscript
assemblyscript compiler typescript wasm webassembly
Last synced: 3 months ago
JSON representation
A TypeScript-like language for WebAssembly.
- Host: GitHub
- URL: https://github.com/AssemblyScript/assemblyscript
- Owner: AssemblyScript
- License: apache-2.0
- Created: 2017-09-28T11:06:50.000Z (over 7 years ago)
- Default Branch: main
- Last Pushed: 2024-04-11T01:11:32.000Z (9 months ago)
- Last Synced: 2024-04-14T12:12:22.283Z (9 months ago)
- Topics: assemblyscript, compiler, typescript, wasm, webassembly
- Language: WebAssembly
- Homepage: https://www.assemblyscript.org
- Size: 156 MB
- Stars: 16,415
- Watchers: 198
- Forks: 651
- Open Issues: 179
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
- awesome - assemblyscript - Definitely not a TypeScript to WebAssembly compiler 🚀 (WebAssembly)
- awesome-ccamel - AssemblyScript/assemblyscript - A TypeScript-like language for WebAssembly. (WebAssembly)
- awesome-github-repos - AssemblyScript/assemblyscript - A TypeScript-like language for WebAssembly. (WebAssembly)
- awesome-list - assemblyscript - like language for WebAssembly. | AssemblyScript | 12500 | (WebAssembly)
- StarryDivineSky - AssemblyScript/assemblyscript
- jimsghstars - AssemblyScript/assemblyscript - A TypeScript-like language for WebAssembly. (WebAssembly)
- awesome - AssemblyScript/assemblyscript - A TypeScript-like language for WebAssembly. (WebAssembly)
- awesome - AssemblyScript/assemblyscript - A TypeScript-like language for WebAssembly. (WebAssembly)
README
AssemblyScript compiles a variant of TypeScript (basically JavaScript with types) to WebAssembly using Binaryen. It generates lean and mean WebAssembly modules while being just an
npm install
away.
About  ·Â
Getting started  ·Â
Examples  ·Â
Built with AssemblyScript
Contributors
Thanks to our sponsors!
Most of the maintainers and contributors do this open source work in their free time. If you use AssemblyScript for a serious task or plan to do so, and you'd like us to invest more time on it, please donate to our OpenCollective. By sponsoring this project, your logo will show up below. Thank you so much for your support!
## Development instructions
A development environment can be set up by cloning the repository:
```sh
git clone https://github.com/AssemblyScript/assemblyscript.git
cd assemblyscript
npm install
npm link
```The link step is optional and makes the development instance available globally. The full process is documented as part of the repository:
* [Compiler instructions](./src)
* [Runtime instructions](./std/assembly/rt)
* [Test instructions](./tests)