Research
Security News
Threat Actor Exposes Playbook for Exploiting npm to Build Blockchain-Powered Botnets
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
Bullet Physics 3 server for node.js. Designed for multiple realtime clients.
Runs at native C++ speed in a dedicated process, so this is probably the fastest physics you can get for node
. This is not an emscripten build, and does not run in the browser. If that's what you want, you're probably looking for ammo.js.
This also does not include any rendering, only the backend number crunching. If you want rendering, you probably want to plug this into a THREE.js frontend.
npm install antikyth
const Antikyth = require('.');
// initialize new physics engine
const engine = new Antikyth();
// initialize new world
const world = new Antikyth.World();
engine.add(world);
// add some bodies
const floor = new Antikyth.Plane({
position: [0, 0, 0],
dimensions: [0, 1, 0],
mass: 0,
});
world.add(floor);
const box = new Antikyth.Box({
position: [0, 2, 0],
rotation: [Math.PI / 8, 0, 0, 1],
dimensions: [1, 1, 1],
mass: 1,
});
world.add(box);
// request engine updates at 60 FPS
setInterval(() => {
engine.requestUpdate();
}, 1000 / 60);
// log updates to console
box.on('update', ({position: [px, py, pz], rotation: [rx, ry, rz, rw]}) => {
console.log('box', px, py, pz);
});
// start running
engine.start();
FAQs
Bullet Physics 3 server for node.js. Designed for multiple realtime clients.
We found that antikyth 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
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
Security News
NVD’s backlog surpasses 20,000 CVEs as analysis slows and NIST announces new system updates to address ongoing delays.
Security News
Research
A malicious npm package disguised as a WhatsApp client is exploiting authentication flows with a remote kill switch to exfiltrate data and destroy files.