
Product
Announcing Socket Certified Patches: One-Click Fixes for Vulnerable Dependencies
A safer, faster way to eliminate vulnerabilities without updating dependencies
@nichoth/events
Advanced tools
An event emitter and helpers
featuring
npm i -S @nichoth/events
import { Bus } from '@nichoth/events'
const bus = new Bus()
// you can pass in a list of event names that are allowed.
// If you subscribe or emit something not in the list, it will throw an error.
const bus2 = new Bus(['valid', 'events'])
It's recommended to use the .flatten static function to get the event name values after calling .createEvents. Or, if you pass in anything that is not an array, the constructor will call .flatten on it.
import { Bus } from '@nichoth/events'
const events = Bus.createEvents({
a: {
_: [1, 2, 3]
b: {
c: [1,2,3]
}
}
})
const bus = new Bus(Bus.flattern(events))
// is the same as
const bust2 = new Bus(events)
Take an object of arrays of strings, and return a new object where the leaf nodes are strings containing the full object path.
import { Bus } from '@nichoth/events'
Bus.createEvents({
a: {
_: [1, 2, 3]
b: {
c: [1,2,3]
}
}
})
// => {
// a: {
// 1: 'a.1',
// 2: 'a.2',
// 3: 'a.3
// b: {
// c: {
// 1: 'a.b.c.1',
// 2: 'a.b.c.2',
// 3: 'a.b.c.3'
// }
// }
// },
// }
//
import { Bus } from '@nichoth/events'
const bus = new Bus()
const off = bus.on(events.a['1'], (data) => {
t.equal(data, 'test data', 'first listener gets the event')
off() // unsubscribe
})
import { Bus } from '@nichoth/events'
const bus = new Bus()
bus.emit(events.a['1'], 'test data')
You can partially apply the the .emit function
const emitFoo = bus.emit('foo')
bus.on('foo', data => {
console.log(data)
// => { example: 'data' }
})
emitFoo({ example: 'data' })
Install dev deps with --legacy-peer-deps.
npm i --legacy--peer-deps
npm test
FAQs
Event emitter and helpers
The npm package @nichoth/events receives a total of 16 weekly downloads. As such, @nichoth/events popularity was classified as not popular.
We found that @nichoth/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.

Product
A safer, faster way to eliminate vulnerabilities without updating dependencies

Product
Reachability analysis for Ruby is now in beta, helping teams identify which vulnerabilities are truly exploitable in their applications.

Research
/Security News
Malicious npm packages use Adspect cloaking and fake CAPTCHAs to fingerprint visitors and redirect victims to crypto-themed scam sites.