Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/freeshineit/wasm-draw-pixel

canvas draw pixel
https://github.com/freeshineit/wasm-draw-pixel

canvas pixel-art wasm wasm-bindgen wasm-pack

Last synced: about 2 months ago
JSON representation

canvas draw pixel

Awesome Lists containing this project

README

        

# Wasm Draw pixel

![build](https://github.com/freeshineit/wasm-draw-pixel/workflows/build/badge.svg)
## Use

```bash
# install
yarn install

# development
yarn run dev

# production
yarn run build

# https://github.com/http-party/http-server
# version >= 14
cd docs && http-server -p 8080 .

```

![demo](./demo.png)
## Catalogue

```bash
.
├── LICENSE
├── README.md
├── app # FE
│ ├── image
│ ├── utils.ts
│ └── index.ts
├── package.json
├── public # static files
│ └── index.html
├── wasm
│ ├── pkg # wasm-pack compiled product
│ ├── src
│ └── target # rust target
├── webpack.config.js
└── yarn.lock
```