libby-react
v0.0.21
Published
Libby is an open source tool for React component development
Downloads
25
Readme
Libby
Libby is a focused, no-frills React component development tool, similar to Storybook but without the plugins or addons. Libby provides a standalone environment that can be used or deployed with your component or design system documentation.
Demos
Getting Started
Install libby
in your app:
npm i libby-react
Create a libby.config.js
file to the root directory of your project:
// libby.config.js
module.exports = {
// Required
entries: () => require.context('./src', true, /\.libby\.js$/),
// Optional
outputPath: 'dist',
layout: 'src/components/layout.js',
openBrowser: true,
port: 9000,
title: 'Page Title',
webpackConfig: () => ({
// Custom Webpack config goes here
}),
backgrounds: {
default: 'white',
values: [
{
name: 'white',
value: '#ffffff'
},
{
name: 'gray',
value: '#ebf0f5'
}
]
}
};
Add the following scripts to your package.json
file:
// package.json
"scripts": {
"libby:start": "libby start",
"libby:build": "libby build"
}
Run libby:
npm run libby:start
License
MIT