1.0.3 • Published 5 years ago

zeit-integration-inspect v1.0.3

Weekly downloads
5
License
MIT
Repository
github
Last release
5 years ago

zeit-integration-inspect

Quickly inspect values during Zeit Integrations development.

Screenshot

Install

yarn add --dev zeit-integration-inspect

Usage

const inspectPanel = require("zeit-integration-inspect");

async function handler(options){
    return htm`
        <Page>
            <Container>
                <H2>Your Integration</H2>
                <P>Awesome description.</P>
            </Container>
            ${await inspectPanel(options, values)}
        </Page>
    `;
}

module.exports = withUiHook(handler);

Parameters

  • options - values that are passed down from withUiHook middleware.

  • values - These are values you would like to display during development.

Default Panels

The panel will display metadata, clientState, action by default from the options parameter.

You can always choose to hide them.