15 lines
224 B
Markdown
15 lines
224 B
Markdown
|
# JS Canvas Playground
|
||
|
|
||
|
Various experiments in javascript canvas
|
||
|
|
||
|
## Run locally
|
||
|
|
||
|
```bash
|
||
|
// Compile typescript files
|
||
|
$ tsc -w
|
||
|
// Serve the content of current directory
|
||
|
$ python3 -m http.server
|
||
|
$ firefox localhost:8000
|
||
|
```
|
||
|
|