美文网首页
初学ES6笔记

初学ES6笔记

作者: Karenduan | 来源:发表于2018-08-01 09:19 被阅读0次

    1、部署安装

    nodejs是javascript语言的服务器运行环境,对ES6的支持度比浏览器更高。使用版本管理工具nvm(https://github.com/creationix/nvm)来安装node,这样可以自由切换版本。注:nvm不支持Windows系统,如果使用Windows系统,可以用nvmw(https://github.com/hakobera/nvmw) 或

    https://github.com/coreybutler/nvmw-windows

    安装nvm,运行命令:

    $ curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.2/install.sh | bash

    注:目前最新版本v0.33.2,可自行替换。nvm默认安装在用户主目录的.nvm子目录下。

    激活nvm:$ source ~/.nvm/nvm.sh

    相关文章

      网友评论

          本文标题:初学ES6笔记

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