![require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages](https://cdn.sanity.io/images/cgdhsj6q/production/be8ab80c8efa5907bc341c6fefe9aa20d239d890-1600x1097.png?w=400&fit=max&auto=format)
Security News
require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
@storybook-nuxt/cli
Advanced tools
Storybook's CLI - easiest method of adding storybook to your projects
Storybook CLI (Command Line Interface) is the easiest way to add Storybook to your project.
Go to your project and run:
cd my-app
npx sb init
In addition to init
, the CLI also has other commands:
add
- add an addon and register itinfo
- print out system information for bug reportsmigrate
- run codemods to migrate your codeSee the command-line help with -h
for details.
The CLI supports yarn. If you have installed yarn in your system and your project has a yarn.lock
file, it'll detect it and use yarn
to install dependencies.
If you don't want to use yarn
always you can use the --package-manager
option like this:
npx sb init --package-manager=npm
If you would like to force a particular version of yarn, you can use the --package-manager
flag with a value of yarn1
or yarn2
.
The CLI supports pnpm. If you have installed pnpm in your system and your project has a pnpm-lock.yaml
file, it'll detect it and use pnpm
to install dependencies.
If you don't have a lock file and would like to force pnpm to be used, you can use the --package-manager
option like this:
npx sb init --package-manager=pnpm
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.
npx sb init --parser flow
For more information visit: storybook.js.org
If the CLI cannot detect your project type, it will ask you. You can also force it to use a particular project type:
npx sb init --type <type>
Where type is one of the project types defined in project_types.ts
FAQs
Storybook's CLI - easiest method of adding storybook to your projects
The npm package @storybook-nuxt/cli receives a total of 0 weekly downloads. As such, @storybook-nuxt/cli popularity was classified as not popular.
We found that @storybook-nuxt/cli demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
Security News
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.