nvm pnpm powershell

devtools/2025/1/16 2:59:23/

nvm 下载
在 nvm 安装路径下修改 settings.txt

root: e:\xxx\nvm
path: e:\xxx\nodejs
npm_mirror https://npmmirror.com/mirrors/npm/
node_mirror https://npmmirror.com/mirrors/node/
powershell">nvm list available
nvm install 18.20.2
nvm use 18.20.2npm config list
npm config set registry https://registry.npmmirror.comnpm i -g pnpm

windows 创建永久的别名

powershell">New-Item -Type file -Force $profile

在文档目录下 ~\Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1

Set-Alias pn pnpm.cmd

Powershell中禁止执行脚本解决办法(about_Execution_Policies)
在管理员权限下

powershell">set-ExecutionPolicy RemoteSigned

http://www.ppmy.cn/devtools/26517.html

相关文章

Docker常用命令 镜像库设置

Docker常用命令 & 镜像库设置 1. 镜像操作2. 容器操作3. 网络操作4. Docker Compose操作5. Docker volume操作6. Docker run介绍7. 镜像库设置 1. 镜像操作 列出本地所有的镜像 docker images从远程仓库拉取镜像到本地 docker pull <image_name>删除本地的指定镜像…

Vue通过下拉框选择字典值,并将对应的label以及value值提交到后端

产品品种从字典中获取 产品性质也是从字典中获取 字典当中的保存 dict_type表 dict_data表 在表单提交的方法中 1.因为做的产品性质是多选&#xff0c;它会以数组的方式提交&#xff0c;所以需要先将Json格式转变为String JSON.stringify(this.form.nature) 2.提交表单&…

Mybatis-Plus扩展接口InnerInterceptor

InnerInterceptor 接口就是 MyBatis-Plus 提供的一个拦截器接口&#xff0c;用于实现一些常用的 SQL 处理逻辑&#xff0c;处理 MyBatis-Plus 的特定功能,例如PaginationInnerInterceptor、OptimisticLockerInnerInterceptor 等,都实现了 InnerInterceptor 接口&#xff0c;并添…

Flutter运行项目一直:running gradle task

大体原因就是访问国外的资源由于网络等原因导致访问失败&#xff0c;解决方法就是换成国内的源 修改项目的android/build.gradle 文件&#xff0c;将里面的 google() mavenCentral()替换为 maven {allowInsecureProtocol trueurl https://maven.aliyun.com/repository/googl…

React 之 如何启动一个新的项目(六)

React本身是为构建SPA&#xff08;单页面应用&#xff09;而设计的。 想完全用 React 构建一个新的应用或网站&#xff0c;我们建议选择社区中流行的、由 React 驱动的框架。 生产级的 React 框架 1. Next.js Next.js 的页面路由 是一个全栈的 React 框架。它用途广泛&#x…

K8S学习

组件理解&#xff1a; c-m: 决策者 api-server: 接口/信息交互中心&#xff08;秘书&#xff09; scheduler: 计算节点资源,任务调度 &#xff08;会计师&#xff09; ETCD: 存储数据 &#xff08;资料档案室&#xff09; node: 服务器 &#xff08;工厂&#xff09; k…

手写一个uart协议——rs232(未完)

先了解一下关于uart和rs232的基础知识 文章目录 一、RS232的回环测试1.1模块整体架构1.2 rx模块设计1.2.1 波形设计1.2.2代码实现与tb1.2.4 仿真 1.3 tx模块设计1.3.1波形设计 本篇内容&#xff1a; 一、RS232的回环测试 上位机由串口助手通过 rx 线往 FPGA 发 8 比特数据&a…

保姆级教程:实现在mac电脑上获取windows电脑分享的网络文件夹

演示系统&#xff1a;win10 Sonoma 14.4.3 限制条件&#xff1a;两台设备需要在同一局域网内&#xff0c;即同一网络环境。 —————————————————————————————————— 第一步&#xff1a;打开控制面板 -> 找到网络和共享中心 -> 选择更改…