An open API service indexing awesome lists of open source software.

https://github.com/greatUzumaki/Canvas-AssemblyScript

My first AS project for perceptron lab
https://github.com/greatUzumaki/Canvas-AssemblyScript

assemblyscript perceptron wasm webpack

Last synced: 10 months ago
JSON representation

My first AS project for perceptron lab

Awesome Lists containing this project

README

          

# 🚀 Welcome to my first AssemblyScript project!

This project has been created using **webpack-cli**



```
npm run asbuild
```

or

```
yarn asbuild
```

to compile WebAssembly module





```
npm run build
```

or

```
yarn build
```

to bundle your application



## Project struct

```
project
│ index.html // main index.html
│ webpack.config.js // WebPack config
│ ...
│
└───src
│ │ index.js // JS entry file
│ │ style.css // just styling
│ └───
│
└───wasm
│ │ asconfig.json // AS settings
│ │ ...
│ │
│ └───assembly
│ │ │ index.ts // main AS file
│ │ │ tsconfig.json // TS settings
│ │ └───
│ │
│ └───build // folder for compiled modules
│
```