Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Node简介

 Node简介

Jackson Tian

July 11, 2013
Tweet

More Decks by Jackson Tian

Other Decks in Programming

Transcript

  1. 国内状况 • 阿⾥里巴巴 • 腾讯 • 百度 • ⺴⽹网易 •

    搜狐 • 新浪 • 美丽说 • 蘑菇街 • ... 18 13年7月11⽇日星期四
  2. 阿⾥里数据平台 • 对外产品 • 淘宝指数 • 数据魔⽅方 • 淘宝时光机 •

    淘宝情报 • 对内产品 • TCIF • 在云端 • 摩萨德 • 中间层应⽤用 • itier • myfox 20 13年7月11⽇日星期四
  3. Hello world! var http = require('http'); http.createServer(function (req, res) {

    res.writeHead(200, {'Content-Type': 'text/plain'}); res.end('Hello World\n'); }).listen(1337); console.log('Server running at http://127.0.0.1:1337/'); 24 13年7月11⽇日星期四