vscode
葬我以时光
https://jensonhui.top
展开
-
无法将“node.exe”项识别为 cmdlet、函数、脚本文件或可运行程序的名称
windows10 报错信息:& : 无法将“node.exe”项识别为 cmdlet、函数、脚本文件或可运行程序的名称。请检查名称的拼写,如果包括路径,请确保路径正确,然后再试一次。所在位置 C:\Users\Mr.Sun\AppData\Roaming\npm\npm.ps1:24 字符: 7+ & "node$exe" "$basedir/node_modules/npm/bin/npm-cli.js" $args+ ~~~~~~~~~~ + ...原创 2021-11-26 16:24:26 · 12992 阅读 · 0 评论 -
webstrom 配置 webpack实现 commond + 点击组件跳转文件位置
开发环境: Mac + Vue + Webstromvscode也很好用,但是没办法跳转组件位置,每次都得自己找目录(记得以前有这个功能,但是后来没有了....)webstrom提示很强大,不过有点臃肿,每次启动就占2G的内存;配置方法:(window同理,commond 换成 ctrl 就搞定)Preferences ---> 左上角搜索:webapck --->配置响应的文件路径在vue 2.0中webpack configuratio...原创 2021-03-26 10:45:58 · 311 阅读 · 0 评论 -
npm 报错 The operation was rejected by your operating system
报错信息:The operation was rejected by your operating system.npm ERR! It is likely you do not have the permissions to access this file as the current user报错原因: 没有开放权限解决方案:终端执行sudo chown -R $(whoami) $(npm config get prefix)/{lib/node_modul..原创 2020-12-10 16:58:41 · 7444 阅读 · 7 评论 -
windows安装vue桥接工具报错 : mkdir 'C:\Program Files\nodejs\node_modules\.staging'
使用vue3后没有了build文件夹, 所以想用vue2.x的命令初始化webpack, 这里就需要用到vue/cli的桥接工具:安装桥接工具 : ( 此时你的vue版本应该是最新3.x )npm install -g @vue/cli-init奇怪的问题发生了 .....Error: EPERM: operation not permitted, mkdir 'C:\Pr...原创 2020-04-30 14:59:55 · 1793 阅读 · 2 评论