
Security News
NVD Quietly Sweeps 100K+ CVEs Into a “Deferred” Black Hole
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
pico-engine-browser
Advanced tools
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
<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>
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');
MIT
1.0.1 - January 5, 2021
event:send
which allows ruleset evaulation to continue even if the ECI is not foundmeta
library to match the one in 0.52.4, with docsctx:picoId
io.picolabs.subscription
ruleset installed in all picos--version
option for pico-engine
commandio.picolabs.wrangler
ruleset in all picosursa
module for cryptographic needs of DIDs, and its dependenciesFAQs
An implementation of the pico-engine targeting web browsers
We found that pico-engine-browser demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
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.
Security News
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
Research
Security News
Lazarus-linked threat actors expand their npm malware campaign with new RAT loaders, hex obfuscation, and over 5,600 downloads across 11 packages.
Security News
Safari 18.4 adds support for Iterator Helpers and two other TC39 JavaScript features, bringing full cross-browser coverage to key parts of the ECMAScript spec.