mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-04 13:29:13 -04:00
refactor(jwt-parser): simplified code
This commit is contained in:
parent
acc7f0a586
commit
f52f7a845c
8 changed files with 203 additions and 558 deletions
|
@ -4,8 +4,24 @@ import { defineTool } from '../tool';
|
|||
export const tool = defineTool({
|
||||
name: 'JWT parser',
|
||||
path: '/jwt-parser',
|
||||
description: 'Parse a JWT (JSON Web Token) to display its content.',
|
||||
keywords: ['jwt', 'parser'],
|
||||
description: 'Parse and decode your JSON Web Token (jwt) and display its content.',
|
||||
keywords: [
|
||||
'jwt',
|
||||
'parser',
|
||||
'decode',
|
||||
'typ',
|
||||
'alg',
|
||||
'iss',
|
||||
'sub',
|
||||
'aud',
|
||||
'exp',
|
||||
'nbf',
|
||||
'iat',
|
||||
'jti',
|
||||
'json',
|
||||
'web',
|
||||
'token',
|
||||
],
|
||||
component: () => import('./jwt-parser.vue'),
|
||||
icon: Key,
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue