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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@teamloick/key.gen

v1.3.3

Published

An OpenSource node js package that gives you the oportunity to generate infinite keys/ids

Readme

> Spanish Docs?

A node js package that give you the oportunity to generate infinite keys/ids.

Installation 💻

npm i @teamloick/key.gen

Usage ⌨️

Default keys

 const { gen } = require('@teamloick/key.gen');
 
 var decent = gen('decent_pw')
 //FkPAgBdpQ6

 var strong = gen('strong_pw')
 //jW-$gAkF0&p$&f(

 var ftKnox = gen('ft_knox_pw')
 //&pO5Y"^?dl)XPY/dU:m&/ji_(=2$/t

 var ciKey = gen('ci_key')
 //J6yjbP1DMEq4dvxVCHDTLUXtEuPJFYpY

 var wpa160 = gen('160_wpa')
 //6lU(bc"<N583h8WK^6^n

 var wpa504 = gen('504_wpa')
 //7O#sli$-~>>=fL|F"g+UmH(0OJVX{RjTJhtpi'XKIT(Q.m&+KOYUUl4F{4:+5A?
 
 var wep64 = gen('64_wep')
 //E8E42

 var wep128 = gen('128_wep')
 //A194AAC9D23EF
 
 var wep152 = gen('152_wep')
 //4BAD5F23EBA633A8
 
 var wep256 = gen('256_wep')
 //5272D73892D83892AB833F2E9211E

Custom

   const { genCustom } = require('@teamloick/key.gen');
   var custom = genCustom(numberOfCharacters, useLowerCase, useUpperCase, useNumbers, useSpecial)

numberOfCharacters: Here you have to put an int with the number of characters that you want.

useLowerCase: Here you have to an Boolean if you want lower case use true if not use false.

useUpperCase: Here you have to an Boolean if you want upper case use true if not use false.

useNumbers: Here you have to an Boolean if you want numbers use true if not use false.

useSpecial: Here you have to an Boolean if you want special characters use true if not use false.

Encryption

const KeyGen = require('@teamloick/key.gen')

var encrypt = KeyGen.beta.encrypt('key')
var decrypt = KeyGen.beta.decrypt(encrypt)

Links