1.0.9 • Published 5 years ago

cuspin v1.0.9

Weekly downloads
3
License
ISC
Repository
github
Last release
5 years ago

cuspin

Minimal JavaScript Event Manager

Install

npm install cuspin

Usage

import { subscribe, subscribeOnce, emit } from 'cuspin';

// subscribe to an event
subscribe('example', (args) => {
    console.log(args)
})

// subscribe once to an event
subscribeOnce('example', (args) => {
    console.log(args);
})

// emit event
emit('example', 'Hello world!');
emit('example', { message: 'Hello world!' });
emit('example', ['Hello', 'world!']);
1.0.9

5 years ago

1.0.8

5 years ago

1.0.7

5 years ago

1.0.6

5 years ago

1.0.5

5 years ago

1.0.4

5 years ago

1.0.3

5 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago