node.js

作者: vzii | 来源:发表于2018-08-17 14:28 被阅读0次

    [Node.js 中文网](http://nodejs.cn/api/documentation.html)

    [Node.js 菜鸟教程](http://www.runoob.com/nodejs/nodejs-tutorial.html)

    1.包管理

    npm init -y :初始化package.josn文件

    npm i 包名 -D : 开发使用的包

    npm i 包名 -S : 开发/上线使用的包

    npm i 包名 -G : 全局使用的包

    npm uninstall 包名 -D/-S/-G:卸载

    2.使用nrm切换镜像源

    npm i nrm -D安装

    nrm  ls:查看镜像源

    nrm use <源名称> <源地址> :新增源

    nrm  use :切换镜像源

    3.fs模板

    fs.readdir

    相关文章

      网友评论

          本文标题:node.js

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