
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.
@fms-cat/automaton
Advanced tools

Animation engine for creative coding
Originally made for Shift, my WebGL demo
You might want to check the variant w/ GUI instead, automaton-with-gui
.min builds are minified. otherwise it isn't minified and comes with source maps.
.module builds are ESM. otherwise it's UMD.
If you want to use the UMD one using iife, everything is exposed onto global under the name AUTOMATON.
Code like this:
const { Automaton } = AUTOMATON;
const data = await ( await fetch( 'automaton.json' ) ).json();
const automaton = new Automaton( data );
// ...
https://www.npmjs.com/package/@fms-cat/automaton
# npm install @fms-cat/automaton
yarn add @fms-cat/automaton
then code like this:
// const { Automaton } = require( '@fms-cat/automaton' );
import { Automaton } from '@fms-cat/automaton';
const data = await ( await fetch( 'automaton.json' ) ).json();
const automaton = new Automaton( data );
// ...
https://fms-cat.github.io/automaton/automaton/docs/
FAQs
Animation engine for creative coding
We found that @fms-cat/automaton 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 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.