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

@granite-elements/granite-inspector

v1.3.0

Published

A lit-element based version of the object inspector of Chrome DevTools

Downloads

39

Readme

<granite-inspector>

A custom element, lit-element based, version of react-inspector

Power of Browser DevTools inspectors right as a custom element.

🛠 Status: In Development

granite-inspector is currently in development. We encourage you to use it and give us your feedback, but there are things that haven't been finalized yet and you can expect some changes.

Published on npm Published on webcomponents.org

Usage example

  <granite-object-inspector data='["a", "b", { "c": "d", "e": "f", "g": { "h": "i", "j": "k"}}]'></granite-object-inspector>

Install

Install the component using npm:

$ npm i @granite-elements/ace-widget --save

Once installed, import it in your application:

import '@granite-elements/ace-widget/ace-widget.js';

Running demos and tests in browser

  1. Fork the ace-widget repository and clone it locally.

  2. Make sure you have npm and the Polymer CLI installed.

  3. When in the ace-widget directory, run npm install to install dependencies.

  4. Serve the project using Polyumer CLI:

    polymer serve --module-resolution node --component-dir node_modules

  5. Open the demo in the browser

    • http://127.0.0.1:8080/components/@greanite-elements/ace-widget/demo

Elements

<granite-inspector />

A shorthand for the inspectors.

  • <granite-inspector/> is currently equivalent to <granite-inspector-object>
  • DOM and table mode are under active development

<granite-inspector-object />

Like console.log. Consider this as a glorified version of <pre>JSON.stringify(data, null, 2)</pre>.

How it works

Tree state is saved at root. If you click to expand some elements in the hierarchy, the state will be preserved after the element is unmounted.

API

The component accepts the following props:

data {Object}: the Javascript object you would like to inspect

name {String}: specify the optional name of the root node, default to undefined

expandLevel {Number}: an integer specifying to which level the tree should be initially expanded.

expandPaths {String|Array}: an array containing all the paths that should be expanded when the component is initialized, or a string of just one path

  • The path string is similar to JSONPath.
    • It is a dot separated string like $.foo.bar. $.foo.bar expands the path $.foo.bar where $ refers to the root node. Note that it only expands that single node (but not all its parents and the root node). Instead, you should use expandPaths={['$', '$.foo', '$.foo.bar']} to expand all the way to the $.foo.bar node.
    • You can refer to array index paths using ['$', '$.1']
    • You can use wildcard to expand all paths on a specific level
      • For example, to expand all first level and second level nodes, use ['$', '$.*'] (equivalent to expandLevel={2})
  • the results are merged with expandLevel

showNonenumerable {Boolean}: show non-enumerable properties.

sortObjectKeys {Boolean|Function}: Sort object keys with optional compare function.

nodeRenderer {Function}: Use a custom nodeRenderer to render the object properties (optional)

  • Instead of using the default nodeRenderer, you can provide a custom function for rendering object properties. The default nodeRender looks like this:

      import './granite-inspector-object-label';
      import './granite-inspector-object-root-label';
    
      const defaultNodeRenderer = ({ depth, name, data, isNonEnumerable }) => {
          return html`
              ${depth === 0 ?
              html`<granite-inspector-object-root-label 
                  name=${name} data=${data}></granite-inspector-object-root-label>` :
              html`
                  <granite-inspector-object-label 
                      name=${name} data=${data} isNonEnumerable=${isNonEnumerable}></granite-inspector-object-label>`
              }
          `;
      };

Theme

By specifying the theme prop you can customize the inspectors. theme prop can be

  1. a string referring to a preset theme ("chromeLight" or "chromeDark", default to "chromeLight")
  2. or a custom object that provides the necessary variables. Checkout src/styles/themes for possible theming variables.

Example 1: Using a preset theme:

<granite-inspector theme="chromeDark" data='{"a": "a", "b": "b"}'></granite-inspector>

Roadmap

Type of inspectors:

  • [x] Tree style
    • [x] common objects
    • [ ] DOM nodes
  • [ ] Table style
    • [ ] Column resizer
  • [ ] Group style

Contributing

  1. Fork it!
  2. Create your feature branch: git checkout -b my-new-feature
  3. Commit your changes: git commit -m 'Add some feature'
  4. Push to the branch: git push origin my-new-feature
  5. Submit a pull request :D

License

MIT License