npm stats
  • Search
  • About
  • Repo
  • Sponsor
  • more
    • Search
    • About
    • Repo
    • Sponsor

Made by Antonio Ramirez

get-hosts

2.0.1

@hemanth

npmHomeRepoSnykSocket
Downloads:45
$ npm install get-hosts
DailyWeeklyMonthlyYearly

get-hosts Build Status

etc/hosts as an array of objects.

Install

$ npm install --save get-hosts

Usage

var getHosts = require('get-hosts');

getHosts(); // sync

getHosts(function(err,hosts){
	if(!err) console.log(hosts);
});

/*[ { 'local.dev': '127.0.0.1' },
  { localhost: '127.0.0.1' },
  { broadcasthost: '255.255.255.255' },
  { 'localhost~ ': '::1' } ]*/

Related

  • get-hosts-cli - CLI for this module

License

MIT © Hemanth.HM