findFilms/node_modules/bare-events
2025-10-05 22:20:49 +03:00
..
lib Initial commit: Torrent search and download application 2025-10-05 22:20:49 +03:00
global.d.ts Initial commit: Torrent search and download application 2025-10-05 22:20:49 +03:00
global.js Initial commit: Torrent search and download application 2025-10-05 22:20:49 +03:00
index.d.ts Initial commit: Torrent search and download application 2025-10-05 22:20:49 +03:00
index.js Initial commit: Torrent search and download application 2025-10-05 22:20:49 +03:00
LICENSE Initial commit: Torrent search and download application 2025-10-05 22:20:49 +03:00
package.json Initial commit: Torrent search and download application 2025-10-05 22:20:49 +03:00
README.md Initial commit: Torrent search and download application 2025-10-05 22:20:49 +03:00
web.d.ts Initial commit: Torrent search and download application 2025-10-05 22:20:49 +03:00
web.js Initial commit: Torrent search and download application 2025-10-05 22:20:49 +03:00

bare-events

Event emitters for JavaScript.

npm install bare-events

Usage

const EventEmitter = require('bare-events')

const e = new EventEmitter()

e.on('hello', function (data) {
  console.log(data)
})

e.emit('hello', 'world')

License

Apache-2.0