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

license-keygen-next

v0.2.2

Published

A fork of node license-key-gen library that generates and validates license

Downloads

34

Readme


This project is a fork of license-key-gen

The particularity of this library compared to license-key-gen is that the latter incorporates the concept of validity which allows the license to have an expiration date without being checked by a remote server.

license-keygen-next

  • Generate license keys for given company details

Source

This project has been imported from license-keygen-next in npm.org.

Docs

Generate a License Key and validate the license. This is typically used for software licensing (serial number).

Installation

npm install license-keygen-next

Data Structure

To create a license key - Enter the users information that your are able to recieve

This object can be any data you wish to tie the license to - format Object

var userInfo = {
  name: '3MLogics',
  country: 'Cameroon',
  town: 'Douala',
  poBox: '8388',
  address: 'Akwa,
  // other infos
}

Must include:

  1. userInfo.name (string) - entity name

  2. userInfo.country (string) - entity country

  3. userInfo.town (string) - entity town

  4. userInfo.zip (string) - entity zip

  5. userInfo.address (string) - entity address

  6. ProductCode (string) - product abbr name, can be any size

  7. AppVersion (string) - optional if you want to tie the license to a version number

  8. osType (string) - lock the license to a specific operating system supported: Windows: WIN, WIN7, WIN8,WIN10 Macintosh: OSX, OSX1, OSX2, OSX3, OSX4, OSX5, OSX6, OSX7, OSX8, OSX9, OSX10, OSX11, OSX12 Apple Mobile: IOS, IOS5, IOS6, IOS7, IOS8, IOS9,IOS10 Google Mobile: ANDROID, ANDROID2, ANDROID3, ANDROID4, ANDROID43, ANDROID44, ANDROID5, ANDROID6, ANDROID7 OTHER

  9. validity (string) - license expiration date

var userLicense = {
  info: userInfo, 
  validity: '2027-01-01',
  prodCode:"LEN100120", 
  appVersion:"1.5", 
  osType:'IOS8'
} 

Init

const licenseKey = require('license-keygen-next')

Create a License Key

Then run the following code to recieve the License for the client This function to be run ONLY for you to generate the license code for the client

const licenseKey = require('license-keygen-next')

var userInfo = {
  name: '3MLogics',
  country: 'Cameroon',
  town: 'Douala',
  poBox: '8388',
  address: 'Akwa',
  // other infos
}

var licenseData = {
  info: userInfo, 
  validity: '2027-01-01',
  prodCode:"LEN100120", 
  appVersion:"1.5", 
  osType:'IOS8'
}

try{
    const license = licenseKey.createLicense(licenseData)
    console.log(license)
}catch(err){
    console.log(err)
}

if success returns

{ errorCode: 0,  message: 'ok',  license: '312220-0A0YW1-RBRCCX-20WDY4-XB1A71' }

if error, returns

{ errorCode: 1002, message: 'product code missing' }

Validate a License Key

On client side your application will pass the user information (Data Structure) and License Key:

⚠️ Specifying the validity of the license is no longer necessary during validation

const licenseKey = require('license-keygen-next')

var userInfo = {
  name: '3MLogics',
  country: 'Cameroon',
  town: 'Douala',
  poBox: '8388',
  address: 'Akwa',
  // other infos
}

var licenseData = {
  info: userInfo, 
  prodCode: "LEN100120", 
  appVersion: "1.5", 
  osType: 'IOS8'
}

try{

    const license = licenseKey.validateLicense(licenseData, "312220-0A0YW1-RBRCCX-20WDY4-XB1A71")
    console.log(license)
    
}catch(err){
    console.log(err)
}

if success returns

{ errorCode: 0, message: 'ok' }

if error, returns

{ errorCode: 1006, message: 'license not valid' }

TODO

  • maintain (save, delete, update, read) licenses and user registration information

Support

Tested in Chrome 53-54, Firefox 48-49, IE 11, Edge 14, Safari 9-10, Node.js 6-7, & PhantomJS 2.1.1. Automated test runs are available.