npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

nodeutilz

v1.2.23

Published

my homebrew appliation

Downloads

11

Readme

nodeUtilz

My NODE .js toolkit

Installation

npm install nodeutilz

Method Utilization Examples

API VERSION 1

const nU = require('nodeUtilz');

testSSH:

utilz
  .testSSH(['10.76.254.254'], 'jSnow', 'nedStarkIsNotDead')
  .then(console.log);

pingV4Nn

utilz.pingV4Nn(['8.8.8.8', '1.1.1.1', '8.8.4.4']).then(console.log);

macFromString

options = {
  string: 'f834.41e7.82a9 \n 10f1.f22a.7728 \n a018.2894.6aa0 0010.4918.33dc',
  options: {
    format: [':', 2],
    case: 'lower',
  },
};

utilz.macFromString('cc70.ed27.6781', options);

primeDeviceProperties

opts = {
  allowed: [],
};
utilz
  .primeDeviceProperties(
    ['11.10.10.10', '10.11.11.11'],
    'primeServer',
    'authToken',
    opts
  )
  .then(console.log)
  .catch(console.log);

mergeObjecs

const newObject = utilz.mergeObjecs([{ a: 1 }, { b: 2 }, { c: 3 }]);

iseDeviceGroups

opts = {
  allowed: [],
};
utilz
  .iseDeviceGroups(['homeSwitc', 'spaceRou'], 'iseServer', 'authToken', opts)
  .then(console.log)
  .catch(console.log);

iseEndpointMacInfo

opts = {
  allowed: [],
};
utilz
  .iseEndpointMacInfo(
    ['00:26:CB:3C:18:BC', '3C:18:A0:78:5E:D0'],
    'iseServer',
    'authToken',
    opts
  )
  .then(console.log)
  .catch(console.log);

iseEndpointIdInfo

opts = {
  allowed: [],
};
utilz
  .iseEndpointIdInfo(
    ['<DEVICE_ID1>', '<DEVICE_ID2>'],
    'iseServer',
    'authToken',
    opts
  )
  .then(console.log)
  .catch(console.log);

iseEndpointUpdate

opts = {
    allowed:[]
};

utilz.iseEndpointUpdate(["<DEVICE_ID1>","<DEVICE_ID2>"],"<GROUP_ID>",<"DESCRIPTION">,"iseServer","authToken",opts).then(console.log).catch(console.log);

filterBadIpV4

options = { onlyIp: true };

utilz.filterBadIpV4(['1.1.1.1', '2.1.1.2', '2.3.4.2.1'], options);

findIpV4inString

options = { onlyIp: true };

nU.ipFromString("1.1.1.1\n10.126.1.2/20\n192.168.1.1/24", options)

findIpV4PrefixinString

options = { onlyIp: false };

nU.ipFromString("1.1.1.1\n10.126.1.2/20\n192.168.1.1/24", options)

ciscoOption43

utilz.ciscoOption43(['1.1.1.1', '2.1.1.2', '2.3.4.2.1']);

ciscoDecodeOption43

utilz.ciscociscoDecodeOption43('f108c0a80a05c0a80a14');

velocloudGetEdgeConfigurationStack

options = {
  callBack: function(data) {
    console.log('doSomethingWith', data);
  },
  url:
    'https://<cloudOrchestratorUrl>/portal/rest/edge/getEdgeConfigurationStack',
  enterpriseId: 567,
  edgeId: 1234,
  modules: ['modules'],
  authCookie: 'velocloud.session=17afa8fa3e6f30a976d2e12...',
};

utilz
  .velocloudGetEdgeConfigurationStack(options)
  .then(t => t.callBack(Object.keys(t.response)))
  .catch(console.log);

velocloudGetEdgeMgmtIp

options = {
  readPath: './response.json',
  writePath: './loopbacks.json',
  veloUrl:
    'https://<cloudOrchestratorUrl>/portal/rest/edge/getEdgeConfigurationStack',
  veloAuthCookie: 'velocloud.session=17afa8fa3e6f30a976d2e12...',
};

utilz.readFile(options.readPath, 'utf8').then(t => (data = JSON.parse(t)));
utilz
  .velocloudGetEdgeMgmtIp(data, options.veloUrl, options.veloAuthCookie)
  .then(t =>
    utilz
      .writeFile('./loopbacks.json', JSON.stringify(t, null, '\t'), 'utf8')
      .catch(console.log)
  );

csvFromJson

unwind = ["key1","key2"...];

utilz.csvFromJson(object,objectKeys,unwind).then(console.log).catch(console.log)

checkOscp

(async () => {
  const certificateBuffer = await utilz.readFile('./bogusCert.crt');
  const rootCertificateBuffer = await utilz.readFile('./bogusCertCA.crt');

  utilz
    .checkOscp(certificateBuffer, rootCertificateBuffer)
    .then(console.log)
    .catch(console.log);
})();

qrCode

const data = 'I am just a man who...';
// if options is used resolves to a uri encoded string for browsers. Else attempts to print image to console.
// output options [uri, htmlCanvas]
const options = { output: 'uri', qrOptions: {} };

utilz.qrCode(data).then(console.log);

writeFile

const filePath = './myFile.txt';
const fileData = 'OSPF Anatomy of an INternet Routing Protocol....';
const encoding = 'utf8';

utilz
  .writeFile(filePath, fileData, encoding)
  .then(console.log)
  .catch(console.log);

primeData

const serverUrl = 'https://cisciPrimeServer2915199441233.replace.this.net';
const serverUri =
  '/webacs/api/v1/data/Devices.json?.full=true&.sort=ipAddress&deviceName=contains(marsOne)&deviceType=contains(29xx)';
const serverAuth = 'Basic madeUpBasicAuthPassword';

// URI can be used to filter results
const requestOptions = utilz.primeRequestOptions(
  serverUrl,
  serverUri,
  serverAuth
);
// Do some work on the data
utilz
  .primeData(requestOptions)
  .then(console.log)
  .catch(console.log);

hashTable

const {hashFunction} = require('nodeutilz');
const hashTableSize = 50; // The size of the hash table impacts how fast data is recalled. Choose wisely
const someData = [{really:1,badExample:2}];
const hashable = utilz.newHashTable(hashFunction,hashTableSize);

// Example
const {really, badExample} = someData[0]:
hashable.add(really,badExample);
const lookup = hashable.lookup(really);
console.log(lookup) // 2

// Methods
hashable.add
hashable.lookup
hashable.remove
hashable.print