welcome to my blog执行npm install hexo-server报错npm ERR! code E404npm ERR! 404 Not Found - GET https://registry.npmjs.com/hexo-serverr - Not foundnpm ERR! 404npm ERR! 404 'hexo-serverr@latest' is n...
转自:项目初始化报 404 Not Found - GET https://registry.npmjs.org
npm install报 404 Not Found - GET https://registry.npmjs.org解决办法:1.先查看当前的代理设置
npm config get proxy
2.如果代理设置时null,则需要配置新的代理地址
npm config set ...
vue3项目装包报错 npm ERR! 404 Not Found - GET https://registry.npmjs.org/@vue%2fvue-loader-v15 - Not found
VUE项目初始化报[404 Not Found - GET https://r.cnpmjs.org/xxxx]
二、解决方案
出现如上情况,基本是未设置代理所致,所以可按如下步骤处理
1、检查当前代理情况,输入 npm config get proxy
如图所示,返回null,说明未设置代理
2、通过npm config set registry设置代理(一般取淘宝镜像)
npm config set registry https://registry.npm.taobao.org
npm install命令既可以下载服务器上的模块,也可以在本地创建自己的模块。
当在本地创建模块的是,需要指定目录,否则install会默认去服务器上下载。
这时候一般会下载失败,报错如下:
49 verbose node v16.13.1
50 verbose npm v8.1.2
51 error code E404
52 error 404 Not Found - GET https://registry.npmjs.com/xxxx - Not found
53 error 404
54 err
问题如标题所示,“hexo上传博客后,网页始终显示404,无法刷新网页”。奋战几天查各种资料后问题终于得到解决,我感觉很有必要记录一下解决过程和解决方案,网页无法打开的原因真的很让人很无语。
先说一下我的github的账号是laoxiao79,然后我创建的仓库名称为mobiledeveloper,本地文件夹为mobiledeveloper.github.io,主要参照了http://www.jia
错误信息:
Not Found - GET https://
registry.npmmirror.
com/4.5.17
- [
NOT_
FOUND] 4.5.17
not found
>npm install @vue/cli@ 4.5.17
-g
错误全部信息
npm ERR! code E404
npm ERR! 404
Not Found - GET https://
registry.npmmirror.
com/4.5.17
- [
NOT_
FOUND] 4.5.17
not found
npm ERR! code E404
npm ERR! 404
Not Found - GET https://
registry.
npmjs.org/@********
- Not found
npm ERR! 404
在Vue框架中打包和编译时报错。使用指令为项目添加依赖,添加指令为:
npm i
npm ERR! code E404
npm ERR! 404 Not Found - GET https://cdn.npm.taobao.org/string..trimstart/-/stri
ng..trimstart-1.0.4.tgz
npm ERR! 404
npm ERR! 404 'string..trimstart@https://registry.nlark.com/string..trimstart/do
wnload/string..trimstart-1.0.4.tgz' is.
首先先说正确的操作步骤吧!
1.首先你要确保nodejs安装成功
2.在window+r --> cmd或者node.js command prompt或者git bash中操作如下命令,这里我用的是git bash
npm install webpack -g
npm install webpack --save-dev
第二条命令是 npm install webpack --sa
错误信息:
4327 error code E404
4328 error 404
Not Found - GET https://
registry.npm.taobao.org/@xtuc/long/
-/long
-4.2.1.tgz
- [
not_
found] document
not found
2.
解决办法
2.1先查看有没有设置代理
执行下面的命令
npm config
get proxy
npm config
get
YAMLException: bad indentation of a mapping entry (106:13)
103 | ## Docs: https://hexo.io/docs/one-command-d ...
104 | deploy:
105 | type:git
106 | repository: git@github.com:Cici-Cici/laij ...
-------------------^
107 | branch: master
这个错误是由于 YAML 文件中的缩进问题导致的。根据错误提示,问题出现在第106行的第13个字符位置。在这个位置上,键 `repository` 的缩进不正确,导致 YAML 解析器无法正确识别该键和其对应的值。
正确的缩进应该是在 `deploy` 下面增加四个空格,使其与上一行的 `type` 对齐。修改后的代码如下:
```yaml
deploy:
type: git
repository: git@github.com:Cici-Cici/laij ...
branch: master
请注意,YAML 对缩进非常敏感,因此确保在编辑 YAML 文件时保持一致的缩进风格,一般建议使用两个空格或四个空格作为缩进。