Skip to content

Installing Plugins

Brian Muenzenmeyer edited this page Nov 4, 2016 · 3 revisions

Deep dive into plugins at the Creating plugins wiki page

Plugins are installed using two steps:

  1. Install into /node_modules from npm

    npm install plugin-node-tab
    

    This will pull down the plugin from the npm registry and run it's own postinstall, if any.

  2. Install into your Pattern Lab instance

    npm run postinstall
    

    This will run Pattern Lab Core postinstall to pick up the new plugin.

    Command line support is coming soon!