2010-09-25から1日間の記事一覧

node.js で jQuery

http://blog.nodejitsu.com/jsdom-jquery-in-5-lines-on-nodejs実は使える模様。まだやってない。HTMLなどをとってきてごにょごにょしたり、WebアプリでHTMLを返すのにサーバーサイドのjQueryでごにょごにょするのには良さそうですね。

__defineGetter__ , __defineSetter__

普通に使えますね。JavaScript でGetter/Setterプロパティを実現するための関数。 Foo.prototypoe.__defineGetter__('prop1', function(){ return '...'; });

sys.inherits で継承を実現

> var sys = require('sys'); > sys.inspect(sys) '{ print: [Function]\n, puts: [Function]\n, debug: [Function]\n, error: [Function]\n, inspect: [Function]\n, p: [Function]\n, log: [Function]\n, exec: [Function]\n, pump: [Function]\n, inherit…