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-print-object

v0.1.3

Published

Component to print a javascript object

Downloads

863

Readme

vue-print-object

A component to print and collapse javascript objects

npm version

Screenshot

Codepen

Features

  • Print javascript objects
  • Highlighting of different types (number, string, boolean, etc)
  • Collapsible: collapse keys
  • Highlight of complete objects on hover

Installation

Via npm

First add it to your package.json:

npm install vue-print-object --save
# or yarn
yarn add vue-print-object

Or manually via <script> tag

If you don't use npm you can download the minified version in dist/vue-print-object.min.js and the css in dist/vue-print-object.css, then add it to your site:

<link rel="stylesheet" href="vue-print-object.css">
<script src="vue-print-object.min.js"></script>

Loading the minified version will automatically register the component VuePrintObject globally on the browsers window object.

Usage

Import the component js and css (alternatively copy and customize the css):

import PrintObject from 'vue-print-object'
import 'vue-print-object/dist/vue-print-object.css'

Then load the component:

// globally
Vue.use(PrintObject)

// or in a component
export default {
  components: {
    PrintObject
  }
}

Finally use the component:

<print-object :printable-object="myObject"></print-object>
export default {
  data: () => {
    myObject: {
      a: 1,
      b: "hello",
      c: {
        d: [3, 4]
      },
      e: false
    }
  }
}

Codepen

Options

| name | type | description | |-------------------|---------------|-----------------------------------| | printable-object | Object | The object that you want to print | | initial-collapsed | Boolean or Array | Set to true to collapse all keys by default. Set an array of strings to collapse only specific keys. |

Examples

Basic example

<print-object :printable-object="myObject"></print-object>
export default {
  data: () => {
    myObject: {
      a: 1
    }
  }
}

Collapse all keys by default

<print-object :printable-object="myObject" initial-collapsed></print-object>
export default {
  data: () => {
    myObject: {
      a: 1,
      b: {
        c: 2
      },
      d: {
        e: 3
      }
    }
  }
}

Collapse specific keys by default

<print-object :printable-object="myObject" :initial-collapsed="['b']"></print-object>
export default {
  data: () => {
    myObject: {
      a: 1,
      b: {
        c: 2
      },
      d: {
        e: 3
      }
    }
  }
}

License

MIT