The Wayback Machine - https://web.archive.org/web/20190204204030/https://github.com/AssemblyScript/assemblyscript
Skip to content
A TypeScript to WebAssembly compiler 🚀 https://assemblyscript.org
Clone or download
Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
bin Make asinit understand '--help', fixes #427 Jan 26, 2019
cli Use baseDir as another parameter to readDir etc. to simplify compatib… Dec 3, 2018
dist Update dist files Jan 24, 2019
examples Improve mandelbort example (#308) Jan 9, 2019
lib Add typings for second argment of demangle (#385) Jan 9, 2019
media Add architecture diagram to media Mar 18, 2018
scripts Even more math (#56) Mar 30, 2018
snap Rename memory instructions; Rework constant handling (#177) Jul 20, 2018
src Emit diagnostic when redeclaring a local name, fixes #452 Feb 3, 2019
std Add ArrayBuffer.isView and rework Array.isArray (#431) Feb 3, 2019
tests Add ArrayBuffer.isView and rework Array.isArray (#431) Feb 3, 2019
.gitattributes Update Binaryen to latest; Various fixes Oct 11, 2018
.gitignore Improve rust build of the n-body example (#112) May 14, 2018
.travis.yml Update dependencies and tackle package-lock weirdness, fixes #319, fixes Nov 8, 2018
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 Add shared memory definitions and initial API (#435) Jan 25, 2019
README.md Replace more RawGit links Dec 8, 2018
index.d.ts Minor restructure and fixes; README; Proposed binaryen additions Dec 10, 2017
index.js Minor restructure and fixes; README; Proposed binaryen additions Dec 10, 2017
package-lock.json Update Binaryen and other dependencies; Update dist files Jan 9, 2019
package.json Update Binaryen and other dependencies; Update dist files Jan 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 Array.isArray and Array#copyWithin (#331) Nov 12, 2018
webpack.config.js Restructure types; Add a use-case specific options parser; Allow (re)… Jul 3, 2018

README.md

AssemblyScript

Build Status Backers on Open Collective Sponsors on Open Collective

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

Try it out in WebAssembly Studio!

Motivation

Being able to write C-performance code in TypeScript feels so good – Ari on Slack (Apr 19, 2018)

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)

Getting started

All the details are provided in the AssemblyScript wiki - make sure to pay it a visit. With that being said, the easiest way to get started with AssemblyScript is to point npm at the GitHub repository (for now)

$> npm install --save-dev AssemblyScript/assemblyscript

followed by scaffolding a new project including the necessary configuration files, for example in the current directory:

$> npx asinit .

Once the project is set up, it's just a matter of using your existing TypeScript tooling while coding, and using the CLI to build to WebAssembly, either manually, or using (and maybe modifying) the generated build task in the generated package.json:

$> npm run asbuild

The CLI API can also be used programmatically.

If you rather prefer an installation suitable for development, pretty much the same can be achieved by cloning the GitHub repository instead:

$> git clone https://github.com/AssemblyScript/assemblyscript.git
$> cd assemblyscript
$> npm install
$> npm link

Note that a fresh clone of the compiler will use the distribution files in dist/, but it can also run the sources directly through ts-node after an npm run clean, which is useful in development. This condition can also be checked by running asc -v (it is running the sources if it states -dev).

Examples

Building

To build an UMD bundle to dist/assemblyscript.js (depends on binaryen.js), including a browser version of asc to dist/asc.js (depends on assemblyscript.js):

$> npm run build

Cleaning the distribution files (again):

$> npm run clean

Linting potential changes:

$> npm run check

Running the tests:

$> npm test

Running everything in order (lint, clean, test, build, test):

$> npm run all

Contributing

This project exists thanks to all the people who contribute.

Sponsoring

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.

This is how we use the donations:

  • Allow the core team to work on AssemblyScript
  • Thank contributors if they invested a large amount of time in contributing
  • Support projects in the ecosystem that are of great value for us or users
  • Fees for money handling

Sponsors

Become a sponsor and get your logo on our README on Github with a link to your site.

Backers

Become a backer and get your image on our README on Github with a link to your site.

Thank you for your support!

You can’t perform that action at this time.
You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session.
Press h to open a hovercard with more details.
Morty Proxy This is a proxified and sanitized view of the page, visit original site.