An open API service indexing awesome lists of open source software.

https://github.com/pilotmoon/aquatic-prime

Generate AquaticPrime license keys
https://github.com/pilotmoon/aquatic-prime

Last synced: over 1 year ago
JSON representation

Generate AquaticPrime license keys

Awesome Lists containing this project

README

          

# AquaticPrime for node

A node.js module to generate AquaticPrime-compatible license keys.

```shell-script
npm install @pilotmoon/aquatic-prime
```

```typescript
import { AquaticPrime } from "@pilotmoon/aquatic-prime";

const aqp = new AquaticPrime({
publicKey: "",
privateKey: "",
keyFormat: "base64", // "hex" is allowed too
});

// generate license plist
const { signedPlist } = aqp.generateLicense({
"Name": "Foo",
"Date": "2022-02-01",
"AbritraryWhatever": "Dingus",
});
```