
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.
three-shared-scene
Advanced tools
npm install three-shared-scene
On the frontend:
import * as THREE from "three";
import {
SharedScene,
SharedSceneWrapper
} from "three-shared-scene";
const sharedScene = new SharedScene();
// treat like you would a THREE.Scene object
const scene = new SharedSceneWrapper(sharedScene);
On the backend you can load an existing THREE.js scene from a file using the fs nodejs module:
const scene = new SharedScene();
const sceneJson = JSON.parse(fs.readFileSync('tests/test-scenes/basic.json', 'utf8'));
scene.fromJSON(testScene);
import * as THREE from "three";
import {SharedScene} from "three-shared-scene";
const scene = new THREE.Scene();
const sharedScene = new SharedScene(scene, {});
FAQs
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.