More Related Content
TXT
PDF
DOCX
PDF
PDF
PPTX
DOCX
Tugas pemrograman jaringan PDF
What's hot
PDF
Clase 10 electiva profesional 3 aws rds php y mysql PDF
DOCX
Simular un next del recordset en php de forma rudimentaria PDF
Progressive Mobile Web Apps PDF
PDF
PPTX
PDF
KEY
PDF
ODP
DOCX
More from Tom Croucher
PDF
Using Node.js to Build Great Streaming Services - HTML5 Dev Conf KEY
Streams are Awesome - (Node.js) TimesOpen Sep 2012 KEY
Using Node.js to improve the performance of Mobile apps and Mobile web KEY
Writing robust Node.js applications KEY
Creating the Internet of Things with JavaScript - Fluent Conf KEY
Using Node.js to make HTML5 work for everyone KEY
A million connections and beyond - Node.js at scale KEY
OSCON 2011 - Node.js Tutorial PDF
Lessons from a coding veteran - Web Directions @Media KEY
Multi-tiered Node Architectures - JSConf 2011 KEY
A language for the Internet: Why JavaScript and Node.js is right for Internet... KEY
A language for the Internet: Why JavaScript and Node.js is right for Internet... PDF
How to stop writing spaghetti code PDF
Doing Horrible Things with DNS - Web Directions South PDF
Doing Horrible Things to DNS in the Name of Science - SF Performance Meetup PDF
JavaScript is the new black - Why Node.js is going to rock your world - Web 2... PDF
PDF
Node.js and How JavaScript is Changing Server Programming PDF
Server Side JavaScript - You ain't seen nothing yet PDF
JavaScript Everywhere! Creating a 100% JavaScript web stack How to stop writing spaghetti code - JSConf.eu 2010
- 8.
- 15.
var http =require('http');
http.createServer(function (req, res) {
res.writeHead(200, {'Content-Type': 'text/plain'});
res.end('Hello Worldn');
}).listen(8124, "127.0.0.1");
console.log('Server running at http://127.0.0.1:8124/'
- 16.
- 18.
var server =Server.createServer(server.createReq(req,
res));