摘要:
npm install –g n n latest 阅读全文
摘要:
如何从EPEL库安装Node.js 另一个有效且简单的方法来安装Node.js就是从官方库。这同样确保您可以访问到EPEL库,你可以通过运行以下命令。 sudo yum install epel-release 现在可以使用yum命令安装Node.js了。 sudo yum install node 阅读全文
摘要:
// 从服务器获取数据 request('http://192.168.1.7:8080/getDemo', function(error, response, body) { console.log('error:', error); console.log('statusCode:', response && response.statusCode); console.log(... 阅读全文