
Security News
The Hidden Blast Radius of the Axios Compromise
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.
@jim-fx/nodez
Advanced tools
This project came out of another project where i needed a node interface.
yarn add @jim-fx/nodez
<script src="https://unpkg.com/@jim-fx/nodez/dist/index.umd.js"></script>
Import it as module:
import { NodeSystem } from '@jim-fx/nodez';
Then use it like so:
const system = new NodeSystem();
If you want to register your own node types:
system.registerNodeType({
name: 'subtract',
inputs: ['number', 'number'],
outputs: ['number'],
// I strongly recommend to destructure and use defaults
compute([input1 = 0, input2 = 0], state) {
return input1 - input2;
},
});
Saving and loading of systems
// save the node system
const save = system.deserialize();
// Download/Upload/stringify the save
// Load the node system
system.serialize(save);
FAQs
Package to do blender type node stuff in the browser.
We found that @jim-fx/nodez 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
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.

Research
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.