Features
- Sign JWT in Node.js without using built-in Crypto Module
Dependencies
- crypto-js // stand-alone library (as of version 4.1.1)
Type Dependencies
| // Based on Tailwind CSS v3.0.23 | |
| // Requires TypeScript 4.1 or later (Template Literal Types) | |
| // Reference https://www.typescriptlang.org/docs/handbook/release-notes/typescript-4-1.html#template-literal-types | |
| type Name = | |
| | 'amber' | |
| | 'blue' | |
| | 'cyan' | |
| | 'emerald' |
| /* Types */ | |
| type Person = { | |
| age: number, | |
| city: string | |
| } | |
| type People = { [name: string]: Person } | |
Features
Dependencies
Type Dependencies