Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/bahamas10/node-service-names

Service names and ports (from iana.org)
https://github.com/bahamas10/node-service-names

Last synced: 15 days ago
JSON representation

Service names and ports (from iana.org)

Awesome Lists containing this project

README

        

IANA service names and ports
============================

Service names and ports (from iana.org)

Usage
-----

In Node.js

``` js
> var services = require('service-names')
undefined
> services.tcp[80]
{ name: 'www-http',
description: 'World Wide Web HTTP' }
> services.tcp[22]
{ name: 'ssh',
description: 'The Secure Shell (SSH) Protocol' }
```

In the Browser

```

alert(services.tcp[80].name); // => 'www-http'

```

Up to date list
---------------

You can generate an up-to-date list of the protocols. Follow these steps:

git clone git://github.com/bahamas10/node-service-names.git
cd node-service-names
npm install # for xml2js and request
make

This will run the included script `get-list.js` and redirect the output for you

Installation
------------

npm install service-names

License
-------

MIT Licensed