0.0.2 • Published 11 years ago

parse-ipv4 v0.0.2

Weekly downloads
2
License
-
Repository
github
Last release
11 years ago

parse-ipv4

parse-ipv4 is a through stream that loosely parses out IPv4 addresses.

Build status

Install

npm install parse-ipv4

Example

Find the addresses of other computers on your network

var parseip = require('parse-ipv4')
var spawn = require('child_process').spawn

var arp = spawn('arp', ['-a'])
arp.stdout
  .pipe(parseip)
  .pipe(process.stdout)

License

MIT

0.0.2

11 years ago

0.0.1

11 years ago

0.0.0

11 years ago