
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
p5-global2instance
Advanced tools
Convert p5js code/snippet from global to instance mode
npm install p5-global2instance
There are 2 away to use this script.
p5-global2instance sourceCode.js
This will produce file sourceCode.p5.js.
For more details use --help
node test.js --help
Usage: test [options] [file]
Options:
-o, --output [file] Save output file to [file]
-p, --print Print result to stdout
-h, --help output usage information
Take this example code
const p5Convert = require('p5-global2instance')
const sourceCode = `
var current;
var previous;
function setup () {
createCanvas(720, 400);
};
function draw () {
background(0);
};
`
let output = p5Convert(sourceCode)
console.log(output)
It will output
import p5 from 'p5';
export default function (sketch) {
var current;
var previous;
sketch.setup = function () {
sketch.createCanvas(720, 400);
};
sketch.draw = function () {
sketch.background(0);
};
}
You can also pass esprima and escodegen options.
p5Convert(sourceCode, {
esprima: {},
escodegen: {}
})
FAQs
Convert p5js code/snippet from global mode to instance mode
The npm package p5-global2instance receives a total of 8 weekly downloads. As such, p5-global2instance popularity was classified as not popular.
We found that p5-global2instance 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.

Security News
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.