标签: npm create-react-app
在尝试使用React时,我遇到了create-react-app GitHub项目。按照指示,我做了:
npm install -g create-react-app create-react-app my-app cd my-app
npm install -g create-react-app
create-react-app my-app
cd my-app
这里的问题是' node_modules'文件夹中充满了npm包,而不仅仅是依赖包。
我想知道为什么会发生这种情况,我该如何解决这个问题才能下载依赖项。