Sha256: 96b4de4cdcb77d4c7dcf32a6cab6d3fb63fda017baccea041c3f27ba7e156c41

Contents?: true

Size: 998 Bytes

Versions: 11

Compression:

Stored size: 998 Bytes

Contents

---
title: Node.js Asynchronous JavaScript Framework
tags: ["Development", "JavaScript", "Node.js"]
---

<p class="excerpt">
  Node.js is an evented I/O framework for the V8 JavaScript engine. It is intended for writing scalable network programs such as web servers.
</p>

<p>
  Node.js is similar in purpose to Twisted for Python, Perl Object Environment for Perl, and EventMachine for Ruby. Unlike most JavaScript, it is not executed in a web browser, but it is rather related to server-side JavaScript. Node.js implements some CommonJS specifications[1]. Node.js includes a REPL environment for interactive testing.
</p>

<pre>
var sys = require('sys'),
    http = require('http');

http.createServer(function (request, response) {
    response.writeHead(200, {'Content-Type': 'text/plain'});
    response.end('Hello World\n');
}).listen(8000);

sys.puts('Server running at http://127.0.0.1:8000/');
</pre>

<p>
  <em>From <a href="http://en.wikipedia.org/wiki/Node.js">Wikipedia.org</em>.
</p>

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
ace-0.4.9 example/content/posts/2010-09-16-node-js.html
ace-0.4.8 example/content/posts/2010-09-16-node-js.html
ace-0.4.7 example/content/posts/2010-09-16-node-js.html
ace-0.4.6 example/content/posts/2010-09-16-node-js.html
ace-0.4.5 example/content/posts/2010-09-16-node-js.html
ace-0.4.4 example/content/posts/2010-09-16-node-js.html
ace-0.4.3 example/content/posts/2010-09-16-node-js.html
ace-0.4.2 example/content/posts/2010-09-16-node-js.html
ace-0.4.1 example/content/posts/2010-09-16-node-js.html
ace-0.4 example/content/posts/2010-09-16-node-js.html
ace-0.3.3 example/content/posts/2010-09-16-node-js.html