You can clone with HTTPS or Subversion.
Clone in Desktop Download ZIPSublime Text 2 is a great cross-platform editor for building node-webkit apps, you can download it here: http://www.sublimetext.com/2
Tools -> Build System -> New Build System
{
"cmd": ["node-webkit", "--enable-logging", "${project_path:${file_path}}"],
"working_dir": "${project_path:${file_path}}",
"path": "/Applications/node-webkit.app/Contents/MacOS/"
}File -> New Window
Project -> Add Folder to Project...
Tools -> Build
Work the same with Sublime Text 3.
As above, but the commands for the build system are as follows (replacing the path with the location of nw.exe):
{
"cmd": ["nw.exe", "--enable-logging", "${project_path:${file_path}}"],
"working_dir": "${project_path:${file_path}}",
"path": "C:/Tools/node-webkit/",
"shell": true
}