1.0.2 • Published 8 years ago

random-ipv4 v1.0.2

Weekly downloads
38
License
MIT
Repository
github
Last release
8 years ago

random-ipv4

Return a random ipv4 address.

MIT License

build:? coverage:?

Install

$ npm install --save random-ipv4 

Usage

For more use-cases see the tests

var randomIpv4 = require('random-ipv4');

// API
// - randomIpv4(schema[, options]);

randomIpv4();
// => 193.31.235.41

randomIpv4('127.0.{token}.1', {
    token: {
        min: 127,
        max: 255
    }
});
// => 127.0.216.1

randomIpv4('{token1}.{token2}.{token3}.{token4}', {
    token1:{
        min: 127,
        max: 127
    },
    token2:{
        min: 127,
        max: 192
    },
    token3:{
        min: 0,
        max: 200
    }
});
// => 127.188.153.3

Note:

  • schema - the ipv4 schema, default '{token1}.{token2}.{token3}.{token4}'.
  • options - options for every token, each token has min and max option, which both are from 0 to 255.

Related

Contributing

Pull requests and stars are highly welcome.

For bugs and feature requests, please create an issue.