node简介+node的全局对象

为什么要是用node

非阻塞的IO,适合的场景web API 和网络爬虫

主要特性

标准类库 模块系统 npm

node的全局对象

1、process类用来操作系统通信

使用process实现 上一行输入什么下一行输出对应的大写字母

var process=require('process');
process.stdin.resume();
process.stdin.setEncoding('utf-8');
process.stdin.on('data',function (text) {
    process.stdout.write(text.toUpperCase())
})

使用process得到操作系统的

    process.stdout.write(process.arch)

2、Buffer类
Buffer实例的toString()方法用来将 16进制编码转换为UTF-8的字符串。如果想转换为其他格式 可以为toString方法添加参数(‘ascii’)

    原文作者:丹丹赵
    原文地址: https://segmentfault.com/a/1190000010898979
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞