
Company News
Socket Named Top Sales Organization by RepVue
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.
spatial-events
Advanced tools
a spatially-aware event emitter, designed to work in 3d space with axis aligned bounding boxes.
listeners may be attached with a name and a bounding box, and events may be emitted with a name, bounding box or point, and arguments.
var spatial = require('spatial-events')
, aabb = require('aabb-3d')
var ee = new spatial
ee.on('explosion', aabb([0, 0, 0], [40, 40, 40]), function(arg) {
console.log('an explosion happened and it was '+arg)
})
ee.emit('explosion', [20, 20, 20], 'overrated')
ee.emit('explosion', aabb([-Infinity, -Infinity, -Infinity], [Infinity, Infinity, Infinity]), 'without measure')
ee.emit('explosion', aabb([-20, -20, -20], [10, 10, 10]), 'never heard')
The event emitter creates an Octree under the covers, which exponentially increases the size of its coordinate system to fit bounding box listeners that are added.
Infinite listeners are stored in a separate structure.
In practice, this means that any "large" listener will be fired after any "small" listener, generally speaking -- events bubble up.
MIT
FAQs
3d spatially-aware event emitter
We found that spatial-events 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.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.

Company News
/Security News
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.