
Security News
Happy Birthday, Shai-Hulud
It has been one year since Shai-Hulud made its first appearance on npm.
tweakpane-object-editor-plugin
Advanced tools
Object editor plugin for Tweakpane.
$ npm install tweakpane-object-editor-plugin
import {Pane} from 'tweakpane';
import * as ObjectEditorPlugin from 'tweakpane-object-editor-plugin';
const parent = {
a: 'bruh',
b: 1,
sayHello: function() {
console.log('Hello');
},
isAuthenticated: false,
params: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16],
child: {
parent: null
}
}
setTimeout(() => {
parent.child.parent = parent;
});
const params = { parent };
const pane = new Pane();
// Register plugin
pane.registerPlugin(ObjectEditorPlugin);
// TODO: Update parameters for your plugin
pane.addBinding(params, 'parent', {
view: 'object-editor',
}).on('change', (ev) => {
console.log(ev.value);
});
FAQs
Object editor for Tweakpane
The npm package tweakpane-object-editor-plugin receives a total of 2 weekly downloads. As such, tweakpane-object-editor-plugin popularity was classified as not popular.
We found that tweakpane-object-editor-plugin 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.

Security News
It has been one year since Shai-Hulud made its first appearance on npm.

Research
/Security News
Operators behind PolinRider used a compromised GitHub account to plant malware in four development versions of a Packagist package with 700,000+ downloads.

Security News
GitHub Actions now supports cache-mode, a least-privilege control on the Actions cache aimed at the cache poisoning technique behind recent compromises.