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
- Host: GitHub
- URL: https://github.com/greatUzumaki/Canvas-AssemblyScript
- Owner: greatUzumaki
- Created: 2022-02-17T07:24:09.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2022-02-28T04:57:56.000Z (almost 4 years ago)
- Last Synced: 2024-07-29T16:58:26.230Z (over 1 year ago)
- Topics: assemblyscript, perceptron, wasm, webpack
- Language: WebAssembly
- Homepage:
- Size: 159 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
│
```