
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.
NPM version of three-js 79 and its addons.
npm i three-js
import THREELib from "three-js";
var THREE = THREELib(); // return THREE JS
// or
var THREE = THREELib(["EffectComposer", ...]); // return THREE JS extended by its addons
var THREE = require("three-js")(); // return THREE JS
// or
var THREE = require("three-js")(["EffectComposer", ...]); // return THREE JS extended by its addons
There is a lot of three-js addons, if one is missing, feel free to make a pull request or send it as an issue with a link to the addon.
Three-js addons looks like that in common js:
THREE.EffectComposer = function(){
//...
}
You only have to encapsulate the entire addon like that:
module.export = function( THREE ){
THREE.EffectComposer = function(){
//...
}
};
Only official or very honorable and stable addons will be accepted/validated.
All tributes to original authors.
FAQs
JavaScript 3D library and its addons
The npm package three-js receives a total of 292 weekly downloads. As such, three-js popularity was classified as not popular.
We found that three-js 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.