1.0.8 • Published 6 years ago

ievent v1.0.8

Weekly downloads
2
License
ISC
Repository
github
Last release
6 years ago

Event

a very light JavaScript Event System

install

npm install ievent -S

usage

import iEvent from 'ievent'

iEvent.on("hello", (name, age) => {
  console.log("hello " + name + " age=" + age);
});

iEvent.on("hello", (name, age) => {
  console.log("hello " + name + " age=" + age + "...");
});

iEvent.once('hi',name=>{
  console.log('hi '+name)
})

// Event.off("hello");

iEvent.emit("hello", "flypie", 21);

iEvent.emit('hi','flypie')
1.0.8

6 years ago

1.0.5

6 years ago

1.0.4

7 years ago

1.0.3

7 years ago

1.0.2

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago