Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Node.js module for the bpmn natural creation language
npm install --save bncl-node
const Bncl = require('bncl-node');
// given a valid bncl statement
var bnclString = "lets create a process with a startevent signed s1 with a endevent signed e1 with a sequenceflow comesfrom s1 goesto e1";
// use this to convert bncl to bpmn
return Bncl.parseBncl(bnclString).then(res => {
console.log(res);
});
output:
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<definitions id="definitions_4e502235-2722-44ac-bf4a-01422aa82ca2" targetNamespace="http://camunda.org/examples" xmlns="http://www.omg.org/spec/BPMN/20100524/MODEL">
<process id="pid-8565d232-4eae-450a-83cb-c5ac4659059b">
<startEvent id="s1">
<outgoing>s1-e1</outgoing>
</startEvent>
<endEvent id="e1">
<incoming>s1-e1</incoming>
</endEvent>
<sequenceFlow id="s1-e1" sourceRef="s1" targetRef="e1"/>
</process>
</definitions>
npm test
FAQs
Node Module for the bpmn natural creation language
We found that bncl-node demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.