2015年2月24日 星期二

node.js express / hello word

app.js

///////////////////////////////////////////////////////////////
s = require('express')
var app = express()

app.get('/', function (req, res) {
  res.send('Hello World!')
})

var server = app.listen(3000, function () {

  var host = server.address().address
  var port = server.address().port

  console.log('Example app listening at http://%s:%s', host, port)

})

///////////////////////////////////////////////////////////////
in lunix 

^C[peterchang@localhost node_modules]$ ls
app.js  express

[peterchang@localhost node_modules]$ node  app.js


///////////////////////////////////////////////////////////////


沒有留言:

張貼留言