linux下安装node npm并配置

  • Post author:
  • Post category:linux

在nodejs官网的下载页面中,直接选择Linux Binaries (x86/x64) 1.下载所需版本的node,以node-v16.14.0-linux-x64.tar.xz为例 2.将安装包放在/usr/local文件夹下 3.执行这两个命令: xz -d node-v16.14.0-linux-x64.tar.xz tar -xvf node-v16.14.0-linux-x64.tar…

继续阅读 linux下安装node npm并配置

vue3 + vite npm 组件库开发(二)

  • Post author:
  • Post category:vue

vue3 + vite npm 组件库开发(二) 主要内容:组件库文档显示配置 对应文档:我这里直接使用一个项目,通过路由去实现,也可以用vue的相关的文档编写库 组件文档配置 每一个组件下面对于的doc就是组件的文档,我这里用的md文件去显示 安装插件vue-router , vite-plugin-vue-markdown vue-router 配置都简单,这里说一下vite-plugin-v…

继续阅读 vue3 + vite npm 组件库开发(二)

npm install –save core-js/modules/es.error.cause.js 报错

  • Post author:
  • Post category:其他

在启动项目时,出现 npm install --save core-js/modules/es.error.cause.js 的错误,该如何解决? 解决方法: 先删除 node_modules 依赖 npm rm -rf node_modules 首先安装 报错的插件 npm install --save core-js 最后再 npm install 或者 yarn install npm in…

继续阅读 npm install –save core-js/modules/es.error.cause.js 报错

npm install 失败解决方法

  • Post author:
  • Post category:其他

有时使用npm install命令有些依赖包无法成功安装,出现如下提示: Failed to execute '/root/nodejs/bin/node /root/nodejs/lib/node_modules/npm/node_modules/node-gyp/bin/node-gyp.js configure --fallback-to-build --module=/root/porta…

继续阅读 npm install 失败解决方法

使用VUE项目,运行npm install,报了Python is not set from command line or npm configuration,查询不到python

  • Post author:
  • Post category:python

gyp verb find Python - executing "py.exe" to get Python executable path gyp verb find Python - "py.exe" is not in PATH or produced an error gyp ERR! find Python gyp ERR! find Python Python is not set …

继续阅读 使用VUE项目,运行npm install,报了Python is not set from command line or npm configuration,查询不到python

cnpm install,执行报错,此系统上禁止运行脚本

  • Post author:
  • Post category:其他

cnpm : 无法加载文件 C:\Users\name\AppData\Roaming\npm\cnpm.ps1,因为在此系统上禁止运行脚本 win10系统,项目需要cnpm install,执行报错:cnpm : 无法加载文件C:\Users\name\AppData\Roaming\npm\cnpm.ps1,因为在此系统上禁止运行脚本 解决办法: 第一步:在win10 系统的搜索框 搜索 Wi…

继续阅读 cnpm install,执行报错,此系统上禁止运行脚本

An unexpected error occurred: “http://registry.npm.taobao.org/webapck: Not found“.

  • Post author:
  • Post category:其他

问题描述 : yarn安装webpack webpack-cli 依赖包报错 An unexpected error occurred: "http://registry.npm.taobao.org/webapck: Not found". 原因说明 这种情况一般都是网络不好导致的下载依赖包请求超时报错,所以需要更改下载地址。 解决步骤: 1.请求地址设置成淘宝源 yarn config set…

继续阅读 An unexpected error occurred: “http://registry.npm.taobao.org/webapck: Not found“.

报错:npm ERR code EPERM

  • Post author:
  • Post category:其他

1 完整错误 npm ERR! code EPERM npm ERR! syscall open npm ERR! path D:NodeJS ode_cache_cacache mpbbab18e npm ERR! errno EPERM npm ERR! FetchError: Invalid response body while trying to fetch https://regist…

继续阅读 报错:npm ERR code EPERM

一次 yarn 安装依赖失败,让我重新认识了 NPM 版本号规则

  • Post author:
  • Post category:其他

大家好,我是若川。 我持续组织了近一年的 源码共读活动 ,感兴趣的可以 点此扫码加我微信 lxchuan12 参与,每周大家一起学习200行左右的源码,共同进步。同时极力推荐订阅我写的 《学习源码整体架构系列》 包含20余篇源码文章。 历史面试系列 。另外:目前建有 江西|湖南|湖北|河南 籍前端群,可加我微信进群。 欢迎星标我的公众号~不错过推文~ 现代的前端开发、Node.js 后端开发中 N…

继续阅读 一次 yarn 安装依赖失败,让我重新认识了 NPM 版本号规则