An implementation of the pico-engine targeting web browsers
npm install pico-engine-browser

An implementation of the pico-engine targeting web browsers
This project bundles pico-engine into a single .js file that can be run inside a web browser.
src/index.js is the main entry point.
To build it
```
npm run build
The output is dist/pico-engine.js and dist/pico-engine.min.js
`html`
If you want to run more than one instance of pico-engine inside the same browser, you need to provide a browser-unique name.
For example:
`js``
var pe1 = await PicoEngine('engine1');
var pe2 = await PicoEngine('engine2');
MIT