
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
matter-js-gif-renderer
Advanced tools

Node.js package that creates a GIF output of Matter.js engine (instead of within browser). Based on Basic Renderer within Matter.js package for Node.js. Uses gif-encoder and canvas node packages.
npm i matter-js-gif-renderer
You can use various GIF Renderer specific options in Render.create.options.
quality - image quality. default: 10repeat - 0 for repeat, -1 for no-repeat. default: 0frameDelay - frame delay in ms. default: 1000/60outputFile - output file name. default: 'myanimated.gif'skipFrames - amount of frames to skip. default: 0Most of the code is from the matter-js docs for brevity.
const Matter = require('matter-js')
const { GifRenderer } = require('matter-js-gif-renderer');
// module aliases
var Engine = Matter.Engine,
Runner = Matter.Runner,
Render = GifRenderer, // changed line
Bodies = Matter.Bodies,
Composite = Matter.Composite;
// create an engine
var engine = Engine.create();
// create a renderer
var render = Render.create({
engine: engine,
options: {
wireframes: false
}
});
// create two boxes and a ground
var boxA = Bodies.rectangle(400, 200, 80, 80);
var boxB = Bodies.rectangle(450, 50, 80, 80);
var ground = Bodies.rectangle(400, 610, 810, 60, { isStatic: true });
// add all of the bodies to the world
Composite.add(engine.world, [boxA, boxB, ground]);
// run the renderer
Render.run(render);
// create runner
var runner = Runner.create();
// run the engine
Runner.run(runner, engine);
Stop the runner (and renderer) with Ctrl+C or add Runner.stop() to your code.
Some things may not work from the initial Renderer (no full test suite).
Any contributions are welcome.
MIT
FAQs
Renderer for Matter.js, that outputs a gif.
We found that matter-js-gif-renderer 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.