renderjson icon indicating copy to clipboard operation
renderjson copied to clipboard

Render JSON into collapsible HTML

Results 27 renderjson issues
Sort by recently updated
recently updated
newest added

current implementation does not support the javascript builtin data type "bigint". This type is handled like normal numbers and JSON.stringify() is called curently. After this call most big numbers does...

When called, these will walk down the renderjson DOM structure and invoke 'show' and 'hide' on all the appropriate elements. Use like so: ``` const rj = renderjson({ js :...

This converts renderjson to typescript. Typescript has a number of benefits like type safety, catching common mistakes, easier refactoring, and better intellisense. It also adds tests to make sure things...

After a long string containing `\n` is truncated, these new lines are actually printed, causing the truncated link to be multi-line, while the original is single line (and showing `\n`)

This is how we solved the problem with microsofts $id/$ref graph reduction strategy. We basically replaced the objects with $ref with the referenced object. It also permits us to use...

For example we have a json `{ 'subject' : { '$id':'123', 'name':'maths', 'desc':'some desc' }, 'students': [ { '$id':'1' 'firstName':'bob', 'lastName':'agent', 'subjects':[ { '$refId':123 'type':'subject' } ] } ] }`...

Hi, Is there any option available to copy the JSON text after it has rendered. I tried to copy that and there are special characters that also get copied that...

Thanks for this wonderful tool. I preview large JSON docs and it would be better to have the disclosure on the left. This way, it is offset from the rest...

I recently converted [python-shell](https://github.com/extrabacon/python-shell) to typescript, Also see my [medium article](https://medium.com/@almenon214/converting-python-shell-to-typescript-8768162d3a55). (cause every two-bit dev has to have a medium article now right? :P ) Eventually I want to implement...