美文网首页mac安装配置
mac nodejs安装及配置

mac nodejs安装及配置

作者: Geroge1226 | 来源:发表于2021-08-10 14:16 被阅读0次

    前言

    由于电脑安装了homebrew,所以就使用了brew方式安装:不会装homebrew的请参考:
    https://www.jianshu.com/writer#/notebooks/38973380/notes/66998028

    1、安装

    • 打开mac终端,输入:brew install node
    brew install node
    
    • 回车等待安装完成。然后验证是否完成如下,即为安装完成
    [xxx@lsyPro ~ ]$ npm -v
    6.10.2
    [xxx@lsyPro ~ ]$ node -v
    v12.8.0
    

    2、配置

    • 淘宝镜像配置:
    npm config set registry=http://registry.npm.taobao.org
    

    或者

    npm install -g cnpm --registry=https://registry.npm.taobao.org
    

    配置完淘宝镜像之后,后续打包编译运可以使用:cnpm

    3. 直接pkg安装

    官网https://nodejs.org/en/下载最新稳定斑斑pkg安装包,直接双击下一步安装完成。

    image.png

    相关文章

      网友评论

        本文标题:mac nodejs安装及配置

        本文链接:https://www.haomeiwen.com/subject/vnluzhtx.html