Skip to content

mock-end/random-ipv4

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.

About

Return a random ipv4 address.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published