https://github.com/vstirbu/espruinofy
Browserify plugin for creating Espruino runnable bundles
https://github.com/vstirbu/espruinofy
Last synced: 7 months ago
JSON representation
Browserify plugin for creating Espruino runnable bundles
- Host: GitHub
- URL: https://github.com/vstirbu/espruinofy
- Owner: vstirbu
- License: mit
- Created: 2014-10-03T08:12:22.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2014-10-04T08:23:23.000Z (about 11 years ago)
- Last Synced: 2025-02-14T01:17:35.559Z (8 months ago)
- Language: JavaScript
- Size: 145 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# espruinofy
Browserify plugin for creating an [Espruino](http://www.espruino.com) runnable bundle from a [node](http://nodejs.org/)-style application.
## Install
```sh
npm install espruinofy
```## How to use
Don't forget to ```-ignore``` the Espruino specific packages:
```sh
browserify -p espruinofy yourApp.js > bundle.js
```Then load the resulting bundle in Espruino's WebIDE and push it to the device.
Restart the device and you are good to go...