@elijahjcobb/better-json

This package adds some functionality to `JSON.parse()` and `JSON.stringify()` adding the ability to parse and stringify a `Buffer` object automatically recursively.

Usage no npm install needed!

<script type="module">
  import elijahjcobbBetterJson from 'https://cdn.skypack.dev/@elijahjcobb/better-json';
</script>

README

better-json

This package adds some functionality to JSON.parse() and JSON.stringify() adding the ability to parse and stringify a Buffer object automatically recursively.

Example

import {BetterJSON} from "@elijahjcobb/better-json";

const obj: { email: string, security: { salt: Buffer, pepper: Buffer } } = {
    email: "Elijah",
    security: {
         salt: Buffer.from("salt"),
         pepper: Buffer.from("pepper")
    }
};

const str: string = BetterJSON.stringify(obj);
const obj2: { email: string, security: { salt: Buffer, pepper: Buffer } } = BetterJSON.parse(str);

// obj === obj2

Documentation

Everything is completely documented. You can view the declaration files or even the source code on GitHub.

Bugs

If you find any bugs please create an issue on GitHub or if you are old-fashioned email me at elijah@elijahcobb.com.