HTTP 트랜잭션 해부 - 서버생성Hello world 예제 - express Node.js var http = require('http'); http.createServer(function (req, res) { res.writeHead(200, {'Content-Type': 'text/plain'}); res.write('Hello World!'); res.end(); }).listen(1337); node app.js # other terminal ab -n 10000 -c 10 -k http://127.0.0.1:1337/ ..... Concurrency Level: 10 Time taken for tests: 0.766 seconds Complete requests: 10000 Failed re..