min-host-bits
v1.0.1
Published
> Calculate minimum host bits needed for desired number of hosts with account for network address and broadcast address > > **minHostBits(256) // 9
Downloads
3
Readme
min-host-bits
Calculate minimum host bits needed for desired number of hosts with account for network address and broadcast address
minHostBits(256) // 9
Install
$ npm install --save min-host-bits
OR $ yarn add min-host-bits
Usage
var desiredHosts = 3000;
var minimumHostBits = minHostBits(desiredHosts);
console.log(minimumHostBits) // 12
API
minHostBits(n)
Returns the minimum number of host bits accounting for the network address and broadcast address
n
n number of desired hosts
License
MIT