
Research
/Security News
9 Malicious NuGet Packages Deliver Time-Delayed Destructive Payloads
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.
eecircuit-engine
Advanced tools
Simulation engine for EEcircuit
npm install eecircuit-engine
import the Simulation class and create a new instance of it.
import { Simulation } from "eecircuit-engine";
const sim = new Simulation();
start the simulation by calling the start method. This will initialize the simulation engine, but it does not run any simulation yet.
await sim.start();
Set your netlist. The netlist is same as ngspice netlist format.
const netlist = `Basic RLC circuit
.include modelcard.CMOS90
r vdd 2 100.0
l vdd 2 1
c vdd 2 0.01
m1 2 1 0 0 N90 W=100.0u L=0.09u
vdd vdd 0 1.8
vin 1 0 0 pulse (0 1.8 0 0.1 0.1 15 30)
.tran 0.1 5
.end`;
sim.setNetList(netlist);
Run the simulation by calling the runSim method. This will run the simulation and return the result.
const result = await sim.runSim();
You can now access the result of the simulation.
console.log(result);
FAQs
EEcircuit's simulation engine
The npm package eecircuit-engine receives a total of 4,187 weekly downloads. As such, eecircuit-engine popularity was classified as popular.
We found that eecircuit-engine demonstrated a healthy version release cadence and project activity because the last version was released less than 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 discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.

Security News
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.