Security News
vlt Debuts New JavaScript Package Manager and Serverless Registry at NodeConf EU
vlt introduced its new package manager and a serverless registry this week, innovating in a space where npm has stagnated.
port-numbers
Advanced tools
Get information on network port numbers and services, based on IANA's public listing
Get information on network port numbers and services, based on IANA's public listing.
$ npm i port-numbers
const portNumbers = require('port-numbers');
portNumbers.getService(6379);
//=> { name: 'redis', description: 'An advanced key-value cache and store' }
portNumbers.getService(26257);
//=> { name: 'cockroach', description: 'CockroachDB' }
portNumbers.getService(123, 'udp');
//=> { name: 'ntp', description: 'Network Time Protocol' }
portNumbers.getPort('redis');
//=> { port: 6379, protocol: 'tcp', description: 'An advanced key-value cache and store' }
portNumbers.getPort('cockroach');
//=> { port: 26257, protocol: 'tcp', description: 'CockroachDB' }
portNumbers.getPort('ntp', 'udp');
//=> { port: 123, protocol: 'udp', description: 'Network Time Protocol' }
port
Number : the port to lookup. Required.protocol
String : the protocol. Default: tcp
.service
String : the service to lookup. Required.protocol
String : the protocol. Default: tcp
.© silverwind, distributed under BSD licence
FAQs
Holds information on network port numbers, based on IANA's data
The npm package port-numbers receives a total of 828 weekly downloads. As such, port-numbers popularity was classified as not popular.
We found that port-numbers demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
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.
Security News
vlt introduced its new package manager and a serverless registry this week, innovating in a space where npm has stagnated.
Security News
Research
The Socket Research Team uncovered a malicious Python package typosquatting the popular 'fabric' SSH library, silently exfiltrating AWS credentials from unsuspecting developers.
Security News
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.