https://github.com/kit-p/json-kit
JSON Toolkit for (de)serialization | (un)minification | (de)compression
https://github.com/kit-p/json-kit
json nodejs npm-package typescript
Last synced: 12 months ago
JSON representation
JSON Toolkit for (de)serialization | (un)minification | (de)compression
- Host: GitHub
- URL: https://github.com/kit-p/json-kit
- Owner: Kit-p
- License: mit
- Created: 2022-11-26T03:41:21.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2025-07-01T02:44:51.000Z (about 1 year ago)
- Last Synced: 2025-07-01T03:38:24.081Z (about 1 year ago)
- Topics: json, nodejs, npm-package, typescript
- Language: TypeScript
- Homepage: https://kit-p.github.io/json-kit/
- Size: 7.82 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
json-kit
JSON Toolkit for (de)serialization | (un)minification | (de)compression
---
## Project State
> This project is in **maintenance** state. The APIs are stable.
## Installation
### For Node.js:
- `npm install @kit-p/json-kit`
- `yarn add @kit-p/json-kit`
- `pnpm add @kit-p/json-kit`
#### _CommonJS_
```js
const { JsonKit } = require("@kit-p/json-kit");
```
#### _ESM_
```js
import { JsonKit } from "@kit-p/json-kit";
```
### For browsers:
#### _CommonJS_
- ```html
console.log(JsonKit);
```
- ```html
console.log(JsonKit);
```
#### _ESM_
- ```html
import { JsonKit } from "https://cdn.jsdelivr.net/npm/@kit-p/json-kit/+esm";
```
- ```html
import { JsonKit } from "https://unpkg.com/@kit-p/json-kit?module";
```
## Usage
See [the documentation site](https://kit-p.github.io/json-kit/modules.html) or [the repository Wiki page](https://github.com/Kit-p/json-kit/wiki/Exports) or `docs/modules.md`.
## License
[MIT](https://github.com/Kit-p/json-kit/blob/main/LICENSE)