Please use this generator instead.
This template was moved to a collection of such templates. There's also an interactive installer which makes it easier to choose a template that is right for you.
This is a template for AssemblyScript projects that use Parcel as a bundler. This template allows to have a working AssemblyScript Web project up and running very quickly.
- Clone this project
- Run
npm install
/yarn
- Run
npm run start
/yarn start
- Open
http://localhost:1234
in your browser and observe the console output - Edit something in
index.as.ts
and check the browser console again
If something in this template does not work as expected, please open an issue in the template repo. If you want to suggest an improvement to this template, please fork it and open a PR.
If something in the Parcel transformer (parcel-transformer-assemblyscript-codument
) does not work as expected, please open an issue in the transformer repo.
If you want to suggest an improvement to the transformer, please fork it and open a PR.
AssemblyScript is a programming language that allows developers to write high-performance WebAssembly modules using a syntax similar to TypeScript. It enables developers to write low-level, efficient code that can be executed in a browser or other environments supporting WebAssembly. AssemblyScript provides a bridge between the higher-level world of TypeScript and the lower-level world of WebAssembly, making it easier to work with low-level operations while retaining the safety and productivity benefits of TypeScript. Please see the official AssemblyScript site for more details
Parcel Bundler is a web application bundler that simplifies the process of building and packaging web applications. It automatically handles the bundling and optimization of various web assets such as HTML, CSS, JavaScript, and more. With its zero-config approach, developers can quickly set up and start building web applications without the need for complex configuration files, making it beginner-friendly and convenient for rapid development. Please see the official Parcel site for more details