dnode package installation fails on Windows 7 with Node.js v0.8.1

I’m having trouble installing the dnode package on my Windows 7 machine with Node.js version 0.8.1. I attempted to use both Python versions 2.7.3 and 3.x, but received errors in both cases.

The main error encountered with Python 2.7 is as follows:

D:\Projects\MyApp>npm install D:\Git\dnode\
npm http GET https://registry.npmjs.org/dnode-protocol
npm http GET https://registry.npmjs.org/weak
npm http GET https://registry.npmjs.org/jsonify
npm http 408 https://registry.npmjs.org/weak
npm ERR! registry error parsing json

[email protected] install D:\Projects\MyApp\node_modules\dnode\node_modules\weak
node-gyp rebuild

gyp http GET http://nodejs.org/dist/v0.8.1/node-v0.8.1.tar.gz
gyp http 200 http://nodejs.org/dist/v0.8.1/node-v0.8.1.tar.gz
gyp ERR! Completion callback never invoked!
gyp ERR! This is a bug in node-gyp, please file an Issue
gyp ERR! not ok
npm ERR! [email protected] install: node-gyp rebuild
npm ERR! cmd "/c" "node-gyp rebuild" failed with 6

npm ERR! Failed at the [email protected] install script.
npm ERR! This is most likely a problem with the weak package,
npm ERR! not with npm itself.
npm ERR! Tell the author that this fails on your system:
npm ERR! node-gyp rebuild

npm ERR! System Windows_NT 6.1.7601
npm ERR! command "C:\Program Files (x86)\nodejs\\node.exe"
npm ERR! cwd D:\Projects\MyApp
npm ERR! node -v v0.8.1
npm ERR! npm -v 1.1.33
npm ERR! code ELIFECYCLE

It appears that the issue is tied to the weak dependency and the node-gyp rebuild procedure. Has anyone else faced this problem before?