-
Notifications
You must be signed in to change notification settings - Fork 0
xna2 edited this page Jun 18, 2012
·
17 revisions
npm install express
Create a file called package.json
{
"name":"application-name"
, "author":"Izzak Schroeder <[email protected]>"
, "version":"0.0.1"
, "dependencies":{
"express":">=2.5.10"
}
}
npm install
var server = require('express').cerateServer();
server.get("/", function(request, response){
response.writeHead(200,{"Content-type":text/plain})
response.end('miami');
})
server.listen(8888);