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

licenzo

v1.3.6

Published

A real driver's license identification generator.

Downloads

20

Readme

Demo

Usage

Node.js

var licenzo = require('licenzo');

var billNye = licenzo.md.generate("William", "Sanford", "Nye", "11", "27");
console.log(billNye);		//N-000-887-758-906 (MD Driver's License #)

var kateHudson = licenzo.md.generate("Kate", "Garry", "Hudson", "4", "19");
console.log(kateHudson);	//H-325-461-271-303 (MD Driver's License #)

var santaClaus = licenzo.md.generate("Santa", "", "Claus", "3", "15");
console.log(santaClaus);	//C-420-758-014-197 (MD Driver's License #)


var name = licenzo.{state abbreviation}.generate({params}); //format

Browser

<script src = "licenzo.js" type = "text/javascript"></script>
<script>
var md = licenzo.md.generate("William", "Sanford", "Nye", "11", "27");  //N-000-887-758-906
var wa = licenzo.wa.generate("Lawrence", "", "Tureaud", "5", "21", "1952");  //TUREAL*488K1
var fl = licenzo.fl.generate("Paul", "William", "Walker", "9", "12", "1973", "M"); //W426-699-73-332-0
var wi = licenzo.wi.generate("Chris", "Crosby", "Farley", "2", "16", "1964", "M"); //F640-1036-4056-00
</script>

Testing

npm test

States Currently Supported

  • Florida
    • (firstName, middleName, lastName, dobMonth, dobDay, dobYear, Sex {'M' or 'F'})
  • Maryland
    • (firstName, middleName, lastName, dobMonth, dobDay)
  • Washington
    • (firstName, middleName, lastName, dobMonth, dobDay, dobYear)
  • Wisconsin
    • (firstName, middleName, lastName, dobMonth, dobDay, dobYear, Sex {'M' or 'F'})

Credits

This software uses code from several open source packages.

  • Node.js
  • soundex - helper for indexing names by sound using a phonetic algorithm
  • Alan De Smet - his site provided helpful information about the formatting and structure of some of these ID's

Maintainer

evan.vin  ·  GitHub @evanvin  · 

Disclaimer

I find this information very interesting, but it can be used to do bad things. Like Alan above, I made this project because I am interested in the numbers and structure behind our states driver's license numbers.

Using this information to fabricate fake identification is fraud! Don't be stupid and use this for greedy reasons.