
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
@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.js
automaton-with-gui.min.js
automaton-with-gui.module.js
automaton-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!
The npm package @fms-cat/automaton-with-gui receives a total of 0 weekly downloads. As such, @fms-cat/automaton-with-gui popularity was classified as not popular.
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.
Research
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.