npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

json2html-toolkit

v0.0.3

Published

Tiny library/tool to print out or insert a json object into the dom 🤘

Downloads

25

Readme

JSON to HTML toolkit 🥳

License npm version GitHub forks GitHub stars

Description

Tiny library/tool to print out or insert a json object into the dom 🤘

Features

  • No dependencies 🥹
  • Flexible and customizable 💪

Installation

To install json2html-toolkit, you can use npm:

npm install json2html-toolkit

Or copy the source. It's tiny, just one file! 🤫 (But please give it some ⭐️ if you do 🥹)

Usage

To print out as an html string, use toHTMLString. Here's an example:

import { toHTMLString } from "json2html-toolkit";

const jsonData = {
  /* Your JSON data */
};

const result = toHTMLString(jsonData);

console.log(result);

The output is customizable. For example, you can pass a styling object with the configuration:

import { toHTMLString } from "json2html-toolkit";

// Style like how chat gpt prints out json 🤘
const styling = {
  properties: "#df3079",
  number: "#df3079",
  string: "#00a67d",
  null: "#2e95d3",
  boolean: "#2e95d3",
  braces: "#d9d9e3",
  brackets: "#d9d9e3",
  comma: "#d9d9e3",
  semi: "#d9d9e3",
};

const result = toHTMLString(jsonData, { styling });

Change spacing:

const result = toHTMLString(jsonData, { styling, space: 4 }); // Default is 2

You can also use CSS variables. By default, the variables are named --json2dom-<styling-property>. For example, to change the color of number types, you would target --json2dom-number variable. If you want a different prefix, you can change it using prefixCssVariables:

const result = toHTMLString(jsonData, {
  styling,
  prefixCssVariables: "my-custom-prefix",
});

To insert directly into the DOM, you can use insertAt. Here's an example:

import { insertAt } from "json2html-toolkit";

const jsonData = {
  /* Your JSON data */
};

insertAt("some-target-selector", jsonData);

insertAt uses document.querySelector under the hood, so you can use #some-id or .some-class, any selector you want.

json2html-toolkit is fully written in typescript and exports the following:

export type JSONValue =
  | string
  | number
  | boolean
  | null
  | JSONObject
  | JSONArray;

// Do we need any more here? 🤔
export type Styling = {
  properties?: string;
  number?: string;
  string?: string;
  null?: string;
  boolean?: string;
  braces?: string;
  brackets?: string;
  semi?: string;
  comma?: string;
};

export type Config = {
  space?: number;
  styling?: Styling;
  prefixCssVariables?: string;
};

export function toHtmlString(json: JSONValue, config?: Config): string;

export function insertAt(
  selector: string,
  json: JSONValue,
  config?: Config
): void;

License

This project is licensed under the MIT License - see the LICENSE file for details.

Acknowledgements

This project was inspired by the great work done at highlightjs, prismjs and other similar libraries! 🍻

Support

If you have any questions or issues, please open an issue on GitHub.