jwt-encde 1.1.2 → 1.1.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +27 -23
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -1,43 +1,26 @@
1
1
  # jwt-encde
2
2
 
3
- [![crates.io](https://img.shields.io/crates/v/jwt-encde?label=latest)](https://crates.io/crates/jwt-encde)
3
+ [![crates.io](https://img.shields.io/crates/v/jwt-encde?label=rust)](https://crates.io/crates/jwt-encde)
4
+ [![npm](https://img.shields.io/npm/v/jwt-encde)](https://www.npmjs.com/package/jwt-encde)
5
+ [![License](https://img.shields.io/github/license/nabbisen/jwt-encde)](https://github.com/nabbisen/jwt-encde/blob/main/LICENSE)
4
6
  [![Dependency Status](https://deps.rs/crate/jwt-encde/latest/status.svg)](https://deps.rs/crate/jwt-encde)
5
7
  [![Executable](https://github.com/nabbisen/jwt-encde/actions/workflows/release-executable.yaml/badge.svg)](https://github.com/nabbisen/jwt-encde/actions/workflows/release-executable.yaml)
6
- [![License](https://img.shields.io/github/license/nabbisen/jwt-encde)](https://github.com/nabbisen/jwt-encde/blob/main/LICENSE)
7
8
 
8
9
  GUI JWT encoder / decoder - Local, private, easy.
9
10
 
10
11
  ![screenshot](./screenshot.png)
11
12
 
12
- ## Description
13
-
14
13
  A lightweight, open-source GUI tool for JWT encoding and decoding, designed to support testing around authentication and authorization in app development.
15
14
 
16
- This app allows you to **inspect, analyze, and edit JWT payloads as JSON**, and easily convert test JSON data into JWTs for development and debugging purposes.
17
-
18
- ### Key features
19
-
20
- - Runs entirely **offline**, unlike online tools
21
- - It strongly ensures **security and privacy**. No data ever leaves your machine.
22
- - Built with a **low-memory, high-performance architecture**
23
- - Available as a **cross-platform binary** for Windows, macOS, and Linux
24
-
25
- #### Additional features included
26
-
27
- - Syntax highlighting for JSON to improve readability
28
- - Disabled states for unavailable actions to prevent accidental operations
29
- - A built-in helper tool for analyzing UNIX timestamps within JSON data
30
-
31
- #### Note: This app does **not** support JWT signing or token introspection
32
-
33
- In real-world systems, signing keys and token validation are typically managed by IDaaS. They should be verified through actual integration with the provider.
34
-
35
15
  ## Usage options
36
16
 
37
17
  - Install as npm pacakge
38
18
 
39
19
  ```sh
40
20
  npm install -g jwt-encde
21
+ # or install locally into your app project:
22
+ # npm install -D jwt-encde
23
+
41
24
  npx jwt-encde
42
25
  ```
43
26
 
@@ -51,6 +34,27 @@ In real-world systems, signing keys and token validation are typically managed b
51
34
  - Download executable and just run it
52
35
  - [Assets](https://github.com/nabbisen/jwt-encde/releases/latest) in GitHub Releases are avalilable
53
36
 
37
+ ## Description
38
+
39
+ This app allows you to **inspect, analyze, and edit JWT payloads as JSON**, and easily convert test JSON data into JWTs for development and debugging purposes.
40
+
41
+ ### Key features
42
+
43
+ - Runs entirely **offline**, unlike online tools
44
+ - It strongly ensures **security and privacy**. No data ever leaves your machine.
45
+ - Built with a **low-memory, high-performance architecture**
46
+ - Available as a **cross-platform binary** for Windows, macOS, and Linux
47
+
48
+ #### Additional features included
49
+
50
+ - Syntax highlighting for JSON to improve readability
51
+ - Disabled states for unavailable actions to prevent accidental operations
52
+ - A built-in helper tool for analyzing UNIX timestamps within JSON data
53
+
54
+ #### Note: This app does **not** support JWT signing or token introspection
55
+
56
+ In real-world systems, signing keys and token validation are typically managed by IDaaS. They should be verified through actual integration with the provider.
57
+
54
58
  ## Open-source, with care
55
59
 
56
60
  This project is lovingly built and maintained by volunteers.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jwt-encde",
3
- "version": "1.1.2",
3
+ "version": "1.1.5",
4
4
  "description": "GUI JWT encoder / decoder - Local, private, easy.",
5
5
  "author": "nabbisen <nabbisen@scqr.net>",
6
6
  "license": "Apache-2.0",
@@ -23,9 +23,9 @@
23
23
  "postinstall": "node postinstall.js"
24
24
  },
25
25
  "optionalDependencies": {
26
- "@jwt-encde/bin-linux-x64-gnu": "1.1.2",
27
- "@jwt-encde/bin-darwin-arm64": "1.1.2",
28
- "@jwt-encde/bin-win32-x64-msvc": "1.1.2"
26
+ "@jwt-encde/bin-linux-x64-gnu": "1.1.5",
27
+ "@jwt-encde/bin-darwin-arm64": "1.1.5",
28
+ "@jwt-encde/bin-win32-x64-msvc": "1.1.5"
29
29
  },
30
30
  "keywords": [
31
31
  "jwt",