Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/freeshineit/wasm-draw-pixel
- Owner: freeshineit
- License: mit
- Created: 2022-11-02T14:04:31.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-03-01T14:10:47.000Z (almost 2 years ago)
- Last Synced: 2024-10-12T18:06:16.997Z (3 months 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: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```