kobvel / sb

Esiest way to develop, review and keep UI elements consistent and documented.

Home Page:https://git.io/vP9rq

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

SB npm version

SB is the environment for developers that allow to esaly develop and support UI components with any framework.
SB is the tool for designers that allows to easily review and test UI components that developers made.
SB is the storybook for teams and companies that helped him to keep UI consistent and documented.

SB demo image

How it looks like?

See the demo with angular material cards — Demo
And demo repository — Demo repository

What is supported now?

Basically SB was designed for support any frameworks and libraries. All you components run in isolated scope with that version of framework or library that you need.
For now SB support only Angular 1.x. Support for NG2, React, Aurelia and Vue.js coming very soon.

Getting started

Fasted way to add SB to your project is use sb-cli:

# Installation
npm i -g sb-cli

# Then in ypur project folder run  
sb-create

This will create sb folder with all dependensies based on project type.

Usage

Avaliable commands

# run sb server
npm run sb

# build sb with your project
npm run sb-build

# create new build and publish it to GitHub Pages
npm run sb-publish

Powered your project

First you need to import you main project module to sb/index.js
For Angular based app:

import '../path/to/your/module';
 
// Inject you app module here 
const mainModule = angular.module('sb', [
  'helper',
  'youAppName'
]);

Write your stories
SB provide simple api for you:

    // File sb/stories/index.js

    import 'ui-storybook/sb';
    import 'ui-storybook/stories';

    // Create a new section (like page)
    let buttons = sb.section('Buttons');

    // Then you can add new story and states to section
    buttons.story('Simple buttons')

        // add method create new state for story 
        // first param take title of state
        // second take html template that need to render 
        // and third take object which need to load to component scope
        .add('Main button', '<button>{{ vm.title }}</button>', {
            title: 'Hello from SB'
        })
        .add('Success button', '<button>{{ vm.someOtherTitle }}</button>', {
            someOtherTitle: 'You successfully build first story'
        });

Run SB in browser or load it to GitHub Pages
npm run sb — will load SB server with livereload which allow you to easily develop UI components.
npm run sb-publish — will bild and load SB to GitHub Pages.

Configuration

SB use Webpack to build everything. If you need to change ot update build process go to sb/.webpack folder: server.js include configuration for browser-sync and webpack HMR.
loaders.js include all loaders.
webpack.dev.babel.js include dev build configuration.
webpack.build.babel.js include prodaction build configuration.

Contributing

If you find a bug (and you don’t know how to fix it), have trouble following the documentation or have a question or ideas how to improve SB – create an issue!
If you’re able to patch the bug or add the feature yourself – fantastic, make a pull request with the code!

Avaliable gulp tasks:

    # run dev server with demo data
    gulp serve  

    # create new build
    gulp build  

About

Esiest way to develop, review and keep UI elements consistent and documented.

https://git.io/vP9rq

License:MIT License


Languages

Language:JavaScript 99.7%Language:CSS 0.2%Language:HTML 0.1%