Skip to content
Definitely not a TypeScript to WebAssembly compiler πŸš€
WebAssembly TypeScript JavaScript HTML
Branch: master
Clone or download
Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
.github More publish fixes (#945) Nov 9, 2019
bin Add env:abort stub for template in asinit script (#670) Jun 19, 2019
cli Implement transform classes (#892) Oct 16, 2019
examples Implement transform classes (#892) Oct 16, 2019
lib Fix publish issues and reconfigure master for development (#944) Nov 8, 2019
media Add architecture diagram to media Mar 18, 2018
scripts More publish fixes (#945) Nov 9, 2019
snap Rename memory instructions; Rework constant handling (#177) Jul 20, 2018
src More publish fixes (#945) Nov 9, 2019
std More publish fixes (#945) Nov 9, 2019
tests More publish fixes (#945) Nov 9, 2019
.gitattributes Implement text encoding helpers on top of the new runtime (#679) Jun 21, 2019
.gitignore More publish fixes (#945) Nov 9, 2019
CODE_OF_CONDUCT.md Add contributing guidelines Mar 16, 2018
CONTRIBUTING.md Update CONTRIBUTING.md Jan 30, 2019
LICENSE Added license Sep 29, 2017
NOTICE Expose ExportsWalker (#934) Nov 2, 2019
README.md Fix publish issues and reconfigure master for development (#944) Nov 8, 2019
index.d.ts More publish fixes (#945) Nov 9, 2019
index.js Fix publish issues and reconfigure master for development (#944) Nov 8, 2019
index.release.d.ts More publish fixes (#945) Nov 9, 2019
index.release.js More publish fixes (#945) Nov 9, 2019
package-lock.json Update dist files and dependencies Nov 6, 2019
package.json More publish fixes (#945) Nov 9, 2019
tsconfig-base.json CString/CArray was an illusion; Update and test tsconfig files Dec 11, 2017
tsconfig-docs.json Set up documentation generation Mar 19, 2018
tslint.json Implement reference counting (#592) Jun 5, 2019
webpack.config.js Restructure types; Add a use-case specific options parser; Allow (re)… Jul 3, 2018

README.md

AssemblyScript

Actions Status npm npm (tag)

AssemblyScript compiles a strict subset of TypeScript (basically JavaScript with types) to WebAssembly using Binaryen. It generates lean and mean WebAssembly modules while being just an npm install away.

Check out the documentation or try it out in WebAssembly Studio!


Our Sponsors


Our Backers

The core team members and most 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 above. Thank you so much for your support!


Motivation

You are now able to write WebAssembly, without learning a new language, and harness all these benefits WebAssembly might offer you. I think that is kind of powerful. [...] It [AssemblyScript] is absolutely usable, and very enjoyable! - Surma, WebAssembly for Web Developers (Google I/O ’19) (May 8th, 2019)

AssemblyScript was frictionless. Not only does it allow you to use TypeScript to write WebAssembly, [...] it also produces glue-free WebAssembly modules that are very small with decent performance. – Surma, Replacing a hot path in your app's JavaScript with WebAssembly (Feb 16, 2019)

Perhaps the fundamental issue [to get a small .wasm file] is that JavaScript is the only language for which the Web runtime is a perfect fit. Close relatives that were designed to compile to it, like TypeScript, can be very efficient as well. But languages like C, C++, Rust, and so forth were not originally designed for that purpose. – Alon Zakai, Small WebAssembly Binaries with Rust + Emscripten (Apr 18, 2018)

JavaScript's heyday as the only browser language is over, but most web developers are used to writing JavaScript, and learning a new syntax just to get access to WebAssembly is not (always) ideal. If only there was something in to bridge the gap… – Jani Tarvainen, TypeScript is the bridge between JavaScript and WebAssembly (Feb 20, 2018)

I do think [compiling TypeScript into WASM] is tremendously useful. It allows JavaScript developers to create WASM modules without having to learn C. – Colin Eberhardt, Exploring different approaches to building WebAssembly modules (Oct 17, 2017)

Further resources

You can’t perform that action at this time.