New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@dzeio/listener

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@dzeio/listener

A NodeJS Listener implementation

  • 1.1.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

Listener

Export an Abstract class o quicly add an isomorphic listener to your own classes

how to use it

Javascript

const Listener = require('@dzeio/listener')

class Test extends Listener {
	public pouet() {
		this.emit('eventName')
	}
}

exports.default = Test

// Another file

const Test = require('./Test')

const test = new Test()
test.on('eventName', () => {
	console.log('Event Ran')
})
test.pouet()

TS

import Listener from '@dzeio/listener'

export default class Test extends Listener<
	eventName: () => void
> {
	public pouet() {
		this.emit('eventName')
	}
}

// Another file

import Test from './Test'

const test = new Test()
test.on('eventName', () => {
	console.log('Event Ran')
})
test.pouet()

FAQs

Package last updated on 09 Nov 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc