mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 01:41:05 +08:00
Usage: npm <command> where <command> is one of: access, adduser, bin, bugs, c, cache, completion, config, ddp, dedupe, deprecate, dist-tag, docs, doctor, edit, explore, get, help, help-search, i, init, install, install-test, it, link, list, ln, login, logout, ls, outdated, owner, pack, ping, prefix, profile, prune, publish, rb, rebuild, repo, restart, root, run, run-script, s, se, search, set, shrinkwrap, star, stars, start, stop, t, team, test, token, tst, un, uninstall, unpublish, unstar, up, update, v, version, view, whoami npm <command> -h quick help on <command> npm -l display full usage info npm help <term> search for help on <term> npm help npm involved overview Specify configs in the ini-formatted file: /Users/felipedeboni/.npmrc or on the command line via: npm <command> --key value Config info can be viewed via: npm help config npm@5.6.0 /Users/felipedeboni/.nvm/versions/node/v9.5.0/lib/node_modules/npm and yarn install v1.5.1 [1/5] Validating package.json... [2/5] Resolving packages... success Already up-to-date. Done in 1.69s. instead of third party packages #3274 #3060
Storybook CLI
Storybook CLI (Command Line Interface) is the easiest way to add Storybook to your project.
In the future it will also add other useful generators and migration tooling.
First install the storybook CLI globally.
npm i -g @storybook/cli
Then go to your project run:
getstorybook
That's all you've to do.
Yarn support
It also supports yarn.
If you have installed yarn in your system, it'll detect it and use yarn
instead of npm
.
If you don't want to use yarn
always you can use the --use-npm
option like this:
getstorybook --use-npm
Flow support
It also supports flow files. By default, jscodeshift, the tool used to transform the source files, uses babel to read the files. To be able to transform any flow annotated file, you need to use the flow parser.
getstorybook --parser flow
For more information visit: storybook.js.org