Node.js 1. はじめに、昨年6月末に node-v0.8がリリースされて8か月半ほど経って node-v0.10 がリリースされました。私もいくつかパッチがこのリリースに採用されていまして、ちょっと感慨深いです。 当初1月末のリリース予定でしたが、やっぱり今日まで延びま... 続きを読む
We're working on some fixes to get Grunt up and running with @nodejs 0.10.0. Stick with 0.8.x for now if you can, thanks! 続きを読む
I am pleased to announce a new stable version of Node. This branch brings significant improvements to many areas, with a focus on API polish, ease of use, and backwards compatibility. For a very brief overview of the relevant API changes sinc... 続きを読む
As of this release, Node v0.9 is finally performing faster than v0.8 on HTTP, file system, and TLS benchmarks. Unless there are serious problems found, v0.10.0 will be released on Monday, 2013.03.11, along with more details about the benchmar... 続きを読む
I am thrilled to announce the arrival of a new stable version of Node.js. Compared with the v0.6 releases of Node, this release brings significant improvements in many key performance metrics, as well as cleanup in several core APIs, and the ... 続きを読む
SiliconANGLE 2011.1.31のブログエントリHow a Former Vacuum Cleaner Salesman Became the New King of Node.js | SiliconANGLEryan=nodeコミッタ引退、npmの人(Isaa Schlueter)=二台目nodeリーダー というのが2012.1末にあった直接isaacにインタビューis... 続きを読む
This week Microsoft announced support for Node in Windows Azure, their cloud computing platform. For the Node core team and the community, this is an important milestone. We’ve worked hard over the past six months reworking Node’s machinery... 続きを読む
こんにちは。そろそろ種子島にロケットの打ち上げを見に行きたいエンジニアの石澤 (@summerwind) です。すっかり遅くなってしまいましたが、10月29日(土)に弊社11Fセミナールームで開催されました、アジア最大のNode.jsイベント「東京Node学園祭 2011」の開催報... 続きを読む
Great news for Windows devs: With Node 0.6.3, you can install and run `coffee` just like Mac/Linux folks! `npm install -g coffee-script` 4:15 PM Nov 25th Echofonから Retweeted by 38 people 続きを読む
2011.11.25, Version 0.6.3 (stable) #2083 Land NPM in Node. It is included in packages/installers and installed on `make install`. #2076 Add logos to windows installer. #1711 Correctly handle http requests without headers. (Ben Noordhuis, Feli... 続きを読む
Node Template Engine !!! 5 html(lang="en") head title= pageTitle :javascript | if (foo) { | bar() | } body h1 Jade - node template engine #container - if (youAreUsingJade) p You are amazing - else p Get on it! <!DOCTYPE html> <html lang="en">... 続きを読む
var Canvas = require('term-canvas'); var canvas = new Canvas(50, 100) , ctx = canvas.getContext('2d'); ctx.fillStyle = 'red'; ctx.fillRect(5, 5, 20, 10); ctx.fillStyle = 'blue'; ctx.fillRect(27, 5, 20, 10); ctx.fillStyle = 'yellow'; ctx.fillR... 続きを読む
Loading… Flash Player 9 (or above) is needed to view presentations. We have detected that you do not have it on your computer. To install it, go here. Node.js入門 - Presentation Transcript Node.js 入門 2011 年 4 月 16 日 森 俊夫 @ 徳島 fores... 続きを読む
Great news for all Node.js developers wanting to use Windows: today we reached an important milestone - v0.6.0 – which is the first official stable build that includes Windows support. This comes some four months after our June 23rd announce... 続きを読む
We are happy to announce the third stable branch of Node v0.6. We will be freezing JavaScript, C++, and binary interfaces for all v0.6 releases. The major differences between v0.4 and v0.6 are Native Windows support using I/O Completion Ports... 続きを読む
Evented I/O for V8 javascript. An example of a web server written with Node which responds with "Hello World" after waiting two seconds: var sys = require('sys'), http = require('http'); http.createServer(function (req, res) { setTimeout(func... 続きを読む