Socket
Socket
Sign inDemoInstall

@biotope/preview

Package Overview
Dependencies
10
Maintainers
4
Versions
26
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

@biotope/preview


Version published
Weekly downloads
3
Maintainers
4
Created
Weekly downloads
 

Readme

Source

biotope-preview 🌻

Setup

Install the @biotope/preview package like any other regular npm package:

npm install @biotope/preview --save

Component configuration

The components you would like to see inside of the preview each need a package.json inside their base folder with a configuration. This is required for the process to work:

{
    "name": "Component Name",
    "htmlTagName": "your-component-html-tag",
    "resources": [
        "path/to/component-script.js"
    ],
    "previewConfigs": [
        {
            "name": "Name for your Component Preview in Storybook",
            "props": [
                {
                    "name": "text-prop",
                    "value": "Lorem ipsum"
                },
                {
                    "name": "number-prop",
                    "value": 123
                }
            ],
            "slot": [
                {
                    "htmlTagName": "slotted-component-html-tag",
                    "resources": [...],
                    "props": [...],
                    "slot": [...],
                    "innerHTML": "HTML content"
                }
            ]
        }
    ]
}

Please make sure that your configuration matches the TypeScript interface IStoryConfiguration defined in the preview package.

Generating the preview

Since @biotope/preview uses your components' compiled source code inside the dist folder, before generating the preview you need to run

npm run build

Then you can use either

npx biotope-preview-build

to create a preview folder in your project with a index.html you then can serve somewhere, or

npx biotope-preview-serve

to only serve a temporary storybook preview.

You can pass the following parameters to adjust the process to your project structure:

  • componentsSrcDir: Path that contains all package.json files the preview should consider. Subfolders are parsed recursively. (default: 'src/components')
  • staticDir: Path that contains all the (compiled) resources that you refer to inside the package.json. (default: 'dist/resources/components')

Please notice how the parameters are passed by the following example:

npx biotope-preview-serve componentsSrcDir=src/to/components staticDir=dist/with/components

FAQs

Last updated on 05 Mar 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc