文件名称:tiny-ee:Node.js的最小事件发射器
文件大小:2KB
文件格式:ZIP
更新时间:2024-06-14 16:43:37
JavaScript
小蜜蜂 Node.js的最小事件发射器 安装 npm install tiny-ee 用 var Emitter = require ( 'tiny-ee' ) ; var emitter = new Emitter ( ) ; emitter . on ( 'itworks' , console . log ) ; emitter . once ( 'itworks' , function ( ) { console . log ( 'I will die after this' ) ; } ) ; emitter . emit ( 'itworks' , 'yep' ) ; // More methods emitter . removeListener ( 'itworks' , console . log ) ; emitter . addListener ( 'itwor
【文件预览】:
tiny-ee-master
----.gitignore(13B)
----README.md(528B)
----package.json(595B)
----index.js(2KB)