JSPM

xray-mithril

0.9.1
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • 0
  • Score
    100M100P100Q22962F
  • License MIT

JavaScript object browser for Mithril.js

Package Exports

  • xray-mithril
  • xray-mithril/xray-mithril.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (xray-mithril) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

xray-mithril

JavaScript object browser for Mithril.js

Live demo

Screenshot

Install

$ npm i xray-mithril

Usage

Basic

m(XRay, {obj:myObj})

Disable header

m(XRay, {obj:myObj, header:false})

Set custom title

m(XRay, {obj:myObj, title:"My title"})

Start minimized

m(XRay, {obj:myObj, minimize:true})

Collapse some keys

m(XRay, {obj:myObj, collapse:["key1", "key2"]})
// collapse nested keys
m(XRay, {obj:myObj, collapse:["key1.sub1", "key2.sub2"]})

Collapse all top level keys

m(XRay, {obj:myObj, collapse:"top"})

Collapse everything

m(XRay, {obj:myObj, collapse:true})

Collapse everything except

m(XRay, {obj:myObj, collapseExcept:["key1", "key2"]})

Include footer with node count

m(XRay, {obj:myObj, count:true})

Interaction

Clickable areas:

  • header title -- show/hide XRay panel
  • property -- toggle display of value/subtree
  • property : right click -- prompt with path to property
  • unknown values -- log undetected object to console

Caveats

  • invisible characters in strings like newline are not displayed
  • proxies are not detected, displayed as standard object
  • promise status is not detected

Other ports

License

MIT