npm create-react-app 项目名报错

**

npm create-react-app 项目名报错

**

npm ERR! code UNABLE_TO_GET_ISSUER_CERT_LOCALLY

npm ERR! errno UNABLE_TO_GET_ISSUER_CERT_LOCALLY

npm ERR! request to https://registry.npmjs.org/create-react-app failed, reason: unable to get local issuer certificate

npm ERR! A complete log of this run can be found in:

npm ERR! C:\Users\00\AppData\Local\npm-cache_logs\2024-07-22T02_31_01_751Z-debug.log

log:

javascript 复制代码
0 verbose cli [
0 verbose cli   'D:\\00\\soft\\nodejs\\node.exe',
0 verbose cli   'D:\\00\\soft\\nodejs\\node_modules\\npm\\bin\\npm-cli.js',
0 verbose cli   'i',
0 verbose cli   '-g',
0 verbose cli   'create-react-app'
0 verbose cli ]
1 info using npm@7.6.3
2 info using node@v15.12.0
3 timing config:load:defaults Completed in 2ms
4 timing config:load:file:D:\00\soft\nodejs\node_modules\npm\npmrc Completed in 2ms
5 timing config:load:builtin Completed in 2ms
6 timing config:load:cli Completed in 4ms
7 timing config:load:env Completed in 1ms
8 timing config:load:file:D:\00\work\Code\CircleBrowser\circlebrowser\.npmrc Completed in 0ms
9 timing config:load:project Completed in 3ms
10 timing config:load:file:C:\Users\00\.npmrc Completed in 1ms
11 timing config:load:user Completed in 1ms
12 timing config:load:file:C:\Users\00\AppData\Roaming\npm\etc\npmrc Completed in 0ms
13 timing config:load:global Completed in 0ms
14 timing config:load:cafile Completed in 0ms
15 timing config:load:validate Completed in 1ms
16 timing config:load:setUserAgent Completed in 1ms
17 timing config:load:setEnvs Completed in 1ms
18 timing config:load Completed in 16ms
19 verbose npm-session fef4bbb1de42b3a8
20 timing npm:load Completed in 25ms
21 timing arborist:ctor Completed in 1ms
22 timing idealTree:init Completed in 14ms
23 timing idealTree:userRequests Completed in 3ms
24 silly idealTree buildDeps
25 silly fetch manifest create-react-app@*
26 silly placeDep ROOT create-react-app@ OK for:  want: *
27 timing idealTree:#root Completed in 544ms
28 timing idealTree:node_modules/create-react-app Completed in 0ms
29 timing idealTree:buildDeps Completed in 546ms
30 timing idealTree:fixDepFlags Completed in 0ms
31 timing idealTree Completed in 566ms
32 timing command:i Completed in 573ms
33 verbose type system
34 verbose stack FetchError: request to https://registry.npmjs.org/create-react-app failed, reason: unable to get local issuer certificate
34 verbose stack     at ClientRequest.<anonymous> (D:\00\soft\nodejs\node_modules\npm\node_modules\minipass-fetch\lib\index.js:97:14)
34 verbose stack     at ClientRequest.emit (node:events:369:20)
34 verbose stack     at TLSSocket.socketErrorListener (node:_http_client:462:9)
34 verbose stack     at TLSSocket.emit (node:events:381:22)
34 verbose stack     at emitErrorNT (node:internal/streams/destroy:188:8)
34 verbose stack     at emitErrorCloseNT (node:internal/streams/destroy:153:3)
34 verbose stack     at processTicksAndRejections (node:internal/process/task_queues:81:21)
35 verbose cwd D:\00\work\Code\CircleBrowser\circlebrowser
36 verbose Windows_NT 10.0.22631
37 verbose argv "D:\\00\\soft\\nodejs\\node.exe" "D:\\00\\soft\\nodejs\\node_modules\\npm\\bin\\npm-cli.js" "i" "-g" "create-react-app"
38 verbose node v15.12.0
39 verbose npm  v7.6.3
40 error code UNABLE_TO_GET_ISSUER_CERT_LOCALLY
41 error errno UNABLE_TO_GET_ISSUER_CERT_LOCALLY
42 error request to https://registry.npmjs.org/create-react-app failed, reason: unable to get local issuer certificate
43 verbose exit 1

证书过期。

解决方法:

javascript 复制代码
 npm config set strict-ssl false
 npm config set registry http://registry.npmjs.org/

这将禁用严格的SSL验证,并将registry更改为http而不是https

相关推荐
万少10 分钟前
HarmonyOS 开发必会 5 种 Builder 详解
前端·harmonyos
橙序员小站2 小时前
Agent Skill 是什么?一文讲透 Agent Skill 的设计与实现
前端·后端
炫饭第一名5 小时前
速通Canvas指北🦮——基础入门篇
前端·javascript·程序员
王晓枫5 小时前
flutter接入三方库运行报错:Error running pod install
前端·flutter
符方昊5 小时前
React 19 对比 React 16 新特性解析
前端·react.js
ssshooter5 小时前
又被 Safari 差异坑了:textContent 拿到的值居然没换行?
前端
曲折5 小时前
Cesium-气象要素PNG色斑图叠加
前端·cesium
Forever7_6 小时前
Electron 淘汰!新的桌面端框架 更强大、更轻量化
前端·vue.js
不会敲代码16 小时前
前端组件化样式隔离实战:React CSS Modules、styled-components 与 Vue scoped 对比
css·vue.js·react.js
Angelial6 小时前
Vue3 嵌套路由 KeepAlive:动态缓存与反向配置方案
前端·vue.js