Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

json-markup

Package Overview
Dependencies
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

json-markup

a json to html syntax highlighter

  • 0.1.2
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
7.4K
decreased by-36.01%
Maintainers
1
Weekly downloads
 
Created
Source

json-markup

Highlight your JSON with HTML markup

npm install json-markup

json-markup will take a JSON document and add markup to it so it can be styled in a browser.

var jsonMarkup = require('json-markup');

var html = jsonMarkup({hello:'world'});

console.log(html);

The above example will print the following HTML

<div class="markupify">{
	<span class="key">hello:</span> <span class="string">"world"</span>
}</div>

Afterwards you can use css to style your output to your liking. A stylesheet similar to JSON view is included in style.css

Keywords

FAQs

Package last updated on 30 Jan 2013

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc