These are the docs for the latest stable release of the Bolt Design System. Looking for the previous release, v2.23.0?

Installing a Component

Install any Bolt Component via npm as it's docs suggest. If you were going to install the Card, you'd run:

npm install --save @bolt/components-card

Then add it to .boltrc.js:

module.exports = {
  buildDir: 'www/build',
  components: {
    global: [
+     '@bolt/components-card', 
    ],
    individual: [
    ],
  },
};

Continue to do so with as many components as you'd like.

Debug Panel