Mac 下 nodejs 学习

作者: karl_song | 来源:发表于2016-08-22 00:01 被阅读119次

    想学习 angularjs 结果看得视频教程是在 nodejs 基础上的,就决定先学一下 nodejs 以下是安装过程,平台是 mac。

    1. Homebrew 安装 Nodejs
          brew install node
          // 查询安装成功与否,可通过查询版本:
          node -v
    
    1. 发起服务器
    // 以下代码可从官网下载
        const http = require('http');
        const hostname = '127.0.0.1';
        const port = 1337;
        var server = http.createServer((req, res) => {
              res.writeHead(200, { 'Content-Type': 'text/plain' });
              res.end('Hello World\n');
            })
        server.listen(port, hostname, () => {    
        console.log(`Server running at http://${hostname}:${port}/`);});
    
    1. 启动服务器
          node servere.js
          // 改变服务器设置的值后,可在此执行此命令,查看改变值。
    

    相关文章

      网友评论

        本文标题:Mac 下 nodejs 学习

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