storybook/app/ember/README.md
2021-06-23 13:57:40 +08:00

51 lines
1.7 KiB
Markdown

# Storybook for Ember
Storybook for Ember is a UI development environment for your Ember components.
With it, you can visualize different states of your UI components and develop them interactively.
![Storybook Screenshot](https://github.com/storybookjs/storybook/blob/main/media/storybook-intro.gif)
Storybook runs outside of your app.
So you can develop UI components in isolation without worrying about app specific dependencies and requirements.
## Getting Started
```sh
cd my-ember-app
npx sb init
```
For more information visit: [storybook.js.org](https://storybook.js.org)
---
Storybook also comes with a lot of [addons](https://storybook.js.org/docs/ember/configure/storybook-addons) and a great API to customize as you wish.
You can also build a [static version](https://storybook.js.org/docs/ember/workflows/publish-storybook) of your storybook and deploy it anywhere you want.
## Docs
- [Basics](https://storybook.js.org/docs/ember/get-started/introduction)
- [Configurations](https://storybook.js.org/docs/ember/configure/overview)
- [Addons](https://storybook.js.org/docs/ember/configure/storybook-addons)
## Working with polyfills
If you need to use a polyfill that is already in use in our Ember application,
you will need to add some options to have Storybook working with them.
In this example we'll use the [named-block-polyfill](https://github.com/ember-polyfills/ember-named-blocks-polyfill).
This example also assume that you already have the package in your `package.json`.
In your `.storybook/main.js` you can add the following lines:
```javascript
const namedBlockPolyfill = require('ember-named-blocks-polyfill/lib/named-blocks-polyfill-plugin');
module.exports = {
emberOptions: {
polyfills: [namedBlockPolyfill],
},
[...]
};
```