node-license-server

0.0.5 • Public • Published

node-license-server

NPM Version NPM Downloads Build Status Test Coverage

client software licensing server

Get Started

git clone https://github.com/devfans/node-license-server.git
cd node-license-server
npm start

Licensing logic

The licensing server will generate client software license to permit client software to run when software user trys to run it at the first time, and the license can be saved locally to be reused for the bound machine. The main flow should be like:

  1. License server adds a batch of license keys into the database, the keys can be encrypted strings by server RSA private key which will contains the informations including expiration time.
  2. Software holder issues license keys to software users.
  3. Client software should generate a unique ID of the client machine to identify the unique hardware, which can be achived using modules like machine-digest, and post the key and machine uuid to license server.
  4. License server binds the key with the machine uuid, and generate a license file with RSA private key.
  5. Client software saves the license file locally and verifys license with server's RSA public key. Client software can also set a daily timer to check the expiration of the key.

Client module: node-license-client

node-license-client is a nodejs implementation client module for node-license-server.

Generate RSA Keys

openssl genrsa -des3 -out private.pem 1024
openssl rsa -in private.pem -outform PEM -pubout -out public.pem

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 0.0.5
    0
    • latest

Version History

Package Sidebar

Install

npm i node-license-server

Weekly Downloads

0

Version

0.0.5

License

ISC

Unpacked Size

19.1 kB

Total Files

17

Last publish

Collaborators

  • devfans