
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.
@2112-lab/3d-pathfinding
Advanced tools
A lightweight 3D pathfinding library for finding orthogonal paths between objects in 3D space
A lightweight JavaScript library for finding orthogonal paths between objects in 3D space.
npm install @2112-lab/3d-pathfinding
import { Pathfinding } from '@2112-lab/3d-pathfinding';
const config = {
scene: {
object: {
children: [
{
uuid: 'object1',
name: 'Box1',
position: { x: 0, y: 0, z: 0 },
geometry: {
uuid: 'geometry1',
width: 1,
height: 1,
depth: 1
}
},
{
uuid: 'object2',
name: 'Box2',
position: { x: 5, y: 0, z: 5 },
geometry: {
uuid: 'geometry2',
width: 1,
height: 1,
depth: 1
}
}
]
}
},
connections: [
{
from: 'object1',
to: 'object2'
}
]
};
const pathfinding = new Pathfinding(config);
const paths = pathfinding.findPaths();
For detailed API documentation, see API.md.
MIT
FAQs
A lightweight 3D pathfinding library for finding orthogonal paths between objects in 3D space
We found that @2112-lab/3d-pathfinding demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 4 open source maintainers 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.