1.1.1 • Published 3 years ago

html-json-highlight v1.1.1

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
3 years ago

Welcome to Html Json Highlight

Browser Support

ChromeFirefoxSafariOperaEdgeIE
Latest ✔Latest ✔Latest ✔Latest ✔Latest ✔11 ✔

Install Command:

npm install html-json-highlight --save

Use Module

import HtmlJsonHighlight from 'html-json-highlight';

const Demo = new HtmlJsonHighlight({
	string: 'hello',
	number: 123,
	boolean: true,
	object: {
		string: 'world',
		number: 321,
		false
	},
	array: [
		'lZiMUl',
		258,
		true
	],
	
});

// Simulator koa Route
Route.get('/', async socket => {
	socket.status = 200;
	socket.type = 'text/html';
	socket.response.body =  await Demo.body(false);
})
1.1.1

3 years ago

1.1.0

3 years ago

1.0.8

3 years ago

1.0.7

3 years ago

1.0.6

3 years ago

1.0.5

3 years ago

1.0.4

3 years ago

1.0.3

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago