我尝试使用以下命令创建一个新的React App。
npx create-react-app ./
字符串
但,它抛出下面的错误,
npm ERR! code ENOENT
npm ERR! syscall lstat
npm ERR! path C:\\Users\\TOSHIBA\\AppData\\Roaming\\npm
npm ERR! errno -4058
npm ERR! enoent ENOENT: no such file or directory, lstat 'C:\\Users\\TOSHIBA\\AppData\\Roaming\\npm'
npm ERR! enoent This is related to npm not being able to find a file.
npm ERR! enoent
npm ERR! A complete log of this run can be found in: C:\\Users\\TOSHIBA\\AppData\\Local\\npm-cache\\\_logs\\2023-07-30T04_29_09_680Z-debug-0.log
型
2条答案
按热度按时间kiz8lqtg1#
您可能需要一个应用程序名称,而不是一个目录:
字符串
如果这不起作用,您可以尝试提升权限,或者最好将npm安装路径更改为您的用户具有权限的内容:
型
如果这不起作用,问问自己:
这应该给予你一些想法从那里去哪里。
hgqdbh6s2#
create-react-app必须包含app名称,删除'./'并提及app的名称。希望你的错误到时能得到解决