This is the Vonage JWT SDK for Node.js. This package helps create JWT tokens to use with Vonage APIs.
For full API documentation refer to developer.vonage.com.
npm install @vonage/jwt
yarn add @vonage/jwt
All you need to do is require('@vonage/jwt')
, and use the returned object tocreate your own JWT token.
const { tokenGenerate } = require('@vonage/jwt');
const jwtToken = tokenGenerate(applicationId, privateKey, generatorOptions);
-
applicationId: string
- The Vonage Application Id. -
privateKey: string | Buffer
- The private key. -
generatorOptions: GeneratorOptions
- An object that can be used to set options for the token. See thejsonwebtoken
for all options and claims. You can also pass in a Vonageacl
Run:
npm run test