
Security News
OWASP 2025 Top 10 Adds Software Supply Chain Failures, Ranked Top Community Concern
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.
@fms-cat/automaton-with-gui
Advanced tools
Animation engine for creative coding, with GUI!
It's an extended variant of the original Automaton engine
Originally made for Shift, my WebGL demo

Try our playground! It comes with bunch of examples.
https://fms-cat.github.io/automaton/automaton-with-gui
You might want to also check examples of original Automaton.
automaton-with-gui.jsautomaton-with-gui.min.jsautomaton-with-gui.module.jsautomaton-with-gui.module.min.js.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_WITH_GUI.
You might want to use automaton.min.js of the core engine without GUI for production stage.
Code like this:
const { AutomatonWithGUI } = AUTOMATON_WITH_GUI;
const data = await ( await fetch( 'automaton.json' ) ).json();
const automaton = new AutomatonWithGUI(
data,
{
gui: yourDesiredMountpointDOM
}
);
// ...
https://www.npmjs.com/package/@fms-cat/automaton-with-gui
# npm install @fms-cat/automaton-with-gui
yarn add @fms-cat/automaton-with-gui
then code like this:
// const { AutomatonWithGUI } = require( '@fms-cat/automaton-with-gui' );
import { AutomatonWithGUI } from '@fms-cat/automaton-with-gui';
const data = await ( await fetch( 'automaton.json' ) ).json();
const automaton = new AutomatonWithGUI(
data, // it's okay to be `undefined`
{
gui: yourDesiredMountpointDOM
}
);
// ...
https://fms-cat.github.io/automaton/automaton-with-gui/docs/
FAQs
Animation engine for creative coding, with GUI!
We found that @fms-cat/automaton-with-gui 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
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.

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.