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: 23 days ago
JSON representation
canvas draw pixel
- Host: GitHub
- URL: https://github.com/freeshineit/wasm-draw-pixel
- Owner: freeshineit
- License: mit
- Created: 2022-11-02T14:04:31.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-03-01T14:10:47.000Z (about 2 years ago)
- Last Synced: 2025-03-24T10:21:24.190Z (about 1 month ago)
- Topics: canvas, pixel-art, wasm, wasm-bindgen, wasm-pack
- Language: TypeScript
- Homepage: https://freeshineit.github.io/wasm-draw-pixel/
- Size: 208 KB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Wasm Draw pixel

## 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 .```

## 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
```