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

vue-json-pretty

v2.4.0

Published

A JSON tree view component that is easy to use and also supports data selection.

Downloads

258,568

Readme

Build Status npm package GitHub license Sizes NPM downloads Issues

English | 简体中文

Features

  • As a JSON Formatter.
  • Written in TypeScript, support d.ts.
  • Support get item data from JSON.
  • Support big data.
  • Support editable.

Environment Support

  • Modern browsers, Electron and Internet Explorer 11 (with polyfills)
  • Server-side Rendering

| IE / Edge | Firefox | Chrome | Safari | Electron | | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | IE11, Edge | last 10 versions | last 10 versions | last 10 versions | last 2 versions |

Using NPM or Yarn

$ npm install vue-json-pretty --save
$ yarn add vue-json-pretty

Use Vue2

$ npm install vue-json-pretty@v1-latest --save

Usage

The CSS file is included separately and needs to be imported manually. You can either import CSS globally in your app (if supported by your framework) or directly from the component.

<template>
  <div>
    <vue-json-pretty :data="{ key: 'value' }" />
  </div>
</template>

<script>
import VueJsonPretty from 'vue-json-pretty';
import 'vue-json-pretty/lib/styles.css';

export default {
  components: {
    VueJsonPretty,
  },
};
</script>

Use Nuxt.js

  1. In plugins/vue-json-pretty.js
import Vue from 'vue'
import VueJsonPretty from 'vue-json-pretty'

Vue.component("vue-json-pretty", VueJsonPretty)
  1. In nuxt.config.js
css: [
  'vue-json-pretty/lib/styles.css'
],
plugins: [
  '@/plugins/vue-json-pretty'
],

Props

| Property | Description | Type | Default | | ------------------------ | ----------------------------------------------------------------------------------------------------------------------- | --------------------------------- | ------- | | data(v-model) | JSON data, support v-model when use editable | JSON object | - | | collapsedNodeLength | Objects or arrays which length is greater than this threshold will be collapsed | number | - | | deep | Paths greater than this depth will be collapsed | number | - | | showLength | Show the length when collapsed | boolean | false | | showLine | Show the line | boolean | true | | showLineNumber | Show the line number | boolean | false | | showIcon | Show the icon | boolean | false | | showDoubleQuotes | Show doublequotes on key | boolean | true | | virtual | Use virtual scroll | boolean | false | | height | The height of list when using virtual | number | 400 | | itemHeight | The height of node when using virtual | number | 20 | | selectedValue(v-model) | Selected data path | string, array | - | | rootPath | Root data path | string | root | | nodeSelectable | Defines whether a node supports selection | (node) => boolean | - | | selectableType | Support path select, default none | multiple | single | - | | showSelectController | Show the select controller | boolean | false | | selectOnClickNode | Trigger select when click node | boolean | true | | highlightSelectedNode | Support highlighting selected nodes | boolean | true | | collapsedOnClickBrackets | Support click brackets to collapse | boolean | true | | renderNodeKey | render node key, or use slot #renderNodeKey | ({ node, defaultKey }) => vNode | - | | renderNodeValue | render node value, or use slot #renderNodeValue | ({ node, defaultValue }) => vNode | - | | editable | Support editable | boolean | false | | editableTrigger | Trigger | click | dblclick | click | | theme | Sets the theme of the component. Options are 'light' or 'dark', with dark mode enhancing visibility on dark backgrounds | 'light' \| 'dark' | light |

Events

| Event Name | Description | Parameters | | -------------- | ---------------------------------------- | ------------------------------------ | | nodeClick | triggers when click node | (node: NodeData) | | bracketsClick | triggers when click brackets | (collapsed: boolean, node: NodeData) | | iconClick | triggers when click icon | (collapsed: boolean, node: NodeData) | | selectedChange | triggers when the selected value changed | (newVal, oldVal) |

Slots

| Slot Name | Description | Parameters | | --------------- | ----------------- | ---------------------- | | renderNodeKey | render node key | { node, defaultKey } | | renderNodeValue | render node value | { node, defaultValue } |

Contributors