photo credit: Loozrboy Yesterday I wrote a blogpost at 24hr.se about controlling plugwise connected appliances with nodejs. Its kind of Part II of my previous post about one of my sideprojects (to control my espresso machine automagically before I get home). I’ve also shared the code at github, so please read the post and head [...]
Tag Archives: nodejs
Plugwise, espresso machines and nodejs
This is part I of my series about connecting plugwise and nodejs. Part II is here. I recently started (yet another) project. I want to automatically have a warmed up espresso machine when I get home. My espresso machine (Rancilio Silvia) takes about 45 minutes to warm up, which means that I need to [...]
webdriverjs – nodejs binding for selenium 2.0/webdriver protocol
I recently published my latest project: binding for the webdriver protocol in nodejs. The project is pretty you and there is much to do, but its already working and it can be used to create real-world tests. Here is how you can use it: var client = require(“webdriverjs”).remote(); client .init() .url(“http://www.google.com”) .setValue(“#lst-ib”, “webdriver”) .submitForm(“#tsf”) .end(); [...]
