1.0.2 • Published 7 years ago

signals.js v1.0.2

Weekly downloads
858
License
MIT
Repository
github
Last release
7 years ago

SignalsJS

Join the chat at https://gitter.im/GoodgameStudios/RobotlegsJS Build Status Code Climate Test Coverage npm version Greenkeeper badge

NPM NPM

TypeScript port of AS3 Signals. 13kb compressed.

Usage

import { Signal } from "signals.js";
var signal = new Signal();

signal.add(data => {
  console.log(data.message);
});

signal.dispatch({ message: "hello signal!" });

License

MIT