我正在按照教程here来设置故事书
它告诉我运行以下命令:
# Create our application:
npx create-react-app taskbox
cd taskbox
# Add Storybook:
npx -p @storybook/cli sb init
但是,在第三个命令之后,它给了我
npm ERR! code ENOLOCAL
npm ERR! Could not install from "<last-name>\AppData\Roaming\npm-cache\_npx\8504" as it does not contain a package.json file.
npm ERR! A complete log of this run can be found in:
npm ERR! C:\Users\<name>\AppData\Roaming\npm-
cache\_logs\2019-11-04T14_32_25_838Z-debug.log
Install for [ '@storybook/cli@latest' ] failed with code 1
这看起来像某种缓存问题,因此我尝试清除缓存并重新安装节点。但这仍然行不通。
答案 0 :(得分:2)
您没有运行npm init ......需要package.json文件
答案 1 :(得分:0)
我遇到了同样的问题,正如您所提到的,它与缓存有关,我执行了以下命令,并且运行良好
db:rollback