Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/desktop-cgi/wasm-micropython
MicroPython transmuted into Javascript (WASM) by Emscripten.
https://github.com/desktop-cgi/wasm-micropython
Last synced: about 1 month ago
JSON representation
MicroPython transmuted into Javascript (WASM) by Emscripten.
- Host: GitHub
- URL: https://github.com/desktop-cgi/wasm-micropython
- Owner: desktop-cgi
- License: mit
- Created: 2023-12-25T12:42:11.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-12-25T12:48:04.000Z (about 1 year ago)
- Last Synced: 2024-04-21T02:19:33.138Z (8 months ago)
- Size: 39.1 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# wasm-micropython
MicroPython transmuted into Javascript (WASM) by Emscripten.Official Repo [https://github.com/micropython/micropython/tree/master/ports/javascript](https://github.com/micropython/micropython/tree/master/ports/javascript)
Running MicroPython on Webpack is a little bit tricky. It expects the firmware.wasm file at /static/js/firmware.wasm. So a simple solution is to make static and js folder on webpack's public directory and put firmware.wasm on it. (PR is accepted for a better solution)
```
mkdir -p public/static/js
cp node_modules/micropython/lib/firmware.wasm public/static/js
```