
Research
Supply Chain Attack on Axios Pulls Malicious Dependency from npm
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.
three-eventsystem
Advanced tools
ThreeJS 事件监听器
import { EventSystem } from "three-eventsystem";
// 添加事件监听器
const eventSystem = new EventSystem(scene, camera, renderer);
// 销毁事件监听器
eventSystem.destroy();
// 发布订阅事件
// 支持 scene、group、mesh、object3d 事件绑定
scene.on("mouseenter", e => log(e));
scene.on("mouseover", e => log(e));
scene.on("mousemove", e => log(e));
scene.on("mouseout", e => log(e));
scene.on("mouseleave", e => log(e));
scene.on("mousedown", e => log(e));
scene.on("mouseup", e => log(e));
scene.on("click", e => log(e));
scene.on("dblclick", e => log(e));
scene.on("contextmenu", e => log(e));
scene.on("touchstart", e => log(e));
scene.on("touchmove", e => log(e));
scene.on("touchend", e => log(e));
scene.on("tap", e => log(e));
scene.on("dbltap", e => log(e));
scene.on("wheel", e => log(e));
// 移除事件
scene.off("click", e => log(e));
// 临时失去激活事件监听
scene.listening = false; // 失去
scene.listening = true; // 激活
FAQs
A THREE event system
The npm package three-eventsystem receives a total of 0 weekly downloads. As such, three-eventsystem popularity was classified as not popular.
We found that three-eventsystem 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
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.

Security News
TeamPCP is partnering with ransomware group Vect to turn open source supply chain attacks on tools like Trivy and LiteLLM into large-scale ransomware operations.