Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

on-net-listen

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

on-net-listen

Observe when something in your node app starts listening on a TCP port

  • 1.1.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
158K
decreased by-7.19%
Maintainers
1
Weekly downloads
 
Created
Source

on-net-listen

Observe when something in your node app starts listening on a TCP port.

npm install on-net-listen

build status

Uses async_hooks behind the scenes and requires Node >=9

Usage

var onnetlisten = require('on-net-listen')

onnetlisten(function (addr) {
  // addr is the same object as server.address()
  // for the port do addr.port
  console.log('Someone started listening:', addr)
})

var http = require('http')

var server = http.createServer(function () {
  // ...
})

server.listen(0) // will trigger the above listener

API

var emitter = onnetlisten(onlistening)

Start listening for when TCP servers start listening.

The returned event emitter emits listening when that happens with the address object for the tcp server that started listening.

To stop the listener do emitter.destroy()

Acknowledgements

Credit to @andreasmadsen for writing most of this module and being an async_hooks wizard

This project was kindly sponsored by nearForm.

License

MIT

FAQs

Package last updated on 08 Aug 2018

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