express-fast-json-stringify 1.1.2 → 1.1.4

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.
package/CHANGELOG.md CHANGED
@@ -2,6 +2,8 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ### [1.1.4](https://github.com/nigrosimone/express-fast-json-stringify/compare/v1.1.2...v1.1.4) (2024-09-29)
6
+
5
7
  ### [1.1.2](https://github.com/nigrosimone/express-fast-json-stringify/compare/v1.1.0...v1.1.2) (2024-09-29)
6
8
 
7
9
  ## 1.1.0 (2024-09-29)
package/README.md CHANGED
@@ -2,6 +2,8 @@
2
2
 
3
3
  One of the reasons why [Fastify](https://www.npmjs.com/package/fastify) is faster than Express is its use of [fast-json-stringify](https://www.npmjs.com/package/fast-json-stringify). `fast-json-stringify` is a library developed by the Fastify team that boosts JSON conversion speed by analyzing JSON schema definitions.
4
4
 
5
+ See the stackblitz [demo](https://stackblitz.com/edit/express-fast-json-stringify).
6
+
5
7
  By using the `fast-json-stringify` library, Fastify can serialize JSON much faster than Express, contributing to its overall performance advantage.
6
8
 
7
9
  With `express-fast-json-stringify`, you can leverage `fast-json-stringify` in your Express application as follows:
package/package.json CHANGED
@@ -1,13 +1,16 @@
1
1
  {
2
2
  "name": "express-fast-json-stringify",
3
- "version": "1.1.2",
3
+ "version": "1.1.4",
4
4
  "description": "With express-fast-json-stringify, you can leverage fast-json-stringify in your Express application",
5
5
  "main": "build/main/index.js",
6
6
  "typings": "build/main/index.d.ts",
7
7
  "module": "build/module/index.js",
8
8
  "repository": "https://github.com/nigrosimone/express-fast-json-stringify",
9
9
  "license": "MIT",
10
- "keywords": [],
10
+ "keywords": [
11
+ "express",
12
+ "fast-json-stringify"
13
+ ],
11
14
  "scripts": {
12
15
  "build": "run-p build:*",
13
16
  "build:main": "tsc -p tsconfig.json",