Skip to content

Latest commit

 

History

History
35 lines (21 loc) · 750 Bytes

Note_00248_20180513.md

File metadata and controls

35 lines (21 loc) · 750 Bytes

变更记录

序号 录入时间 录入人 备注
1 2018-05-13 Alfred Jiang -

方案名称

Node.js - Mac 系统中 npm 模块全局安装的权限问题

关键字

Node.js \ node \ npm

需求场景

  1. 解决 npm 模块全局安装的权限问题

参考链接

  1. 简书 - npm 模块全局安装的权限问题(推荐)

详细内容

安装完 node.js 后执行如下命令,可以实现 npm 管理员权限,避免每次都需要执行 sudo

sudo chown -R $(whoami) $(npm config get prefix)/{lib/node_modules,bin,share}

效果图

(无)

备注

(无)