JSPM

rlm

0.0.1
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 1
  • Score
    100M100P100Q30252F
  • License MIT

rlm parses RLM (Reprise License Manager) license files

Package Exports

  • rlm

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (rlm) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

node-flexlm

rlm parses RLM (Reprise License Manager) license files.

##Installation

NPM

####Usage

var RLM = require('rlm');

var lic1 = new RLM.rlm('license.lic');

console.log(lic1.getServer());
console.log(lic1.getVendor("prime"));
console.log(lic1.getFeature("orbit", "venus"));
console.log(lic1.getFeatures("prime"));
console.log(lic1.findExpirations("orbit"));
console.log(lic1.findAllExpirations());
console.log(lic1.findExpired("orbit", 10));