random-ipv4

1.0.2 • Public • Published

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.

Package Sidebar

Install

npm i random-ipv4

Weekly Downloads

61

Version

1.0.2

License

MIT

Last publish

Collaborators

  • bubkoo