New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

pico-engine-browser

Package Overview
Dependencies
Maintainers
2
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

pico-engine-browser

An implementation of the pico-engine targeting web browsers

1.0.1
latest
Source
npm
Version published
Maintainers
2
Created
Source

pico-engine-browser

Build Status Node version

An implementation of the pico-engine targeting web browsers

How it works

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

How to use it

<script src="pico-engine.min.js"></script>
<script>
async function main(){
  // start it up
  var pe = await PicoEngine();
  window.pe = pe;// make it global so we can use it in the devtools console

  console.log('started');

  // now you can use pe (instance of pico-engine-core)
  // i.e.
  var res = await pe.registerRulesetURL('https://raw.githubusercontent.com/Picolab/pico-engine/master/test-rulesets/hello-world.krl');
  console.log(res);


  var rootECI = await pe.getRootECI()

  var myself = await pe.runQuery({
    eci: rootECI,
    rid: 'io.picolabs.wrangler',
    name: 'myself'
  })

  console.log('myself:', myself);
}
main().catch(console.error)
</script>

Multiple engine instances

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:

var pe1 = await PicoEngine('engine1');
var pe2 = await PicoEngine('engine2');

License

MIT

Keywords

pico-engine

FAQs

Package last updated on 05 Jan 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts