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
Enter the following code:
{
"cmd": ["node-webkit", "--enable-logging", "${project_path:${file_path}}"],
"working_dir": "${project_path:${file_path}}",
"path": "/Applications/node-webkit.app/Contents/MacOS/"
}Save the configuration as nodeWebKit.sublime-build on the suggested folder
File -> New Window
Project -> Add Folder to Project...
Tools -> Build System -> nodeWebKit (required step just for Sublime Text 3)Tools -> Build
Work the same with Sublime Text 3, just notice step 8
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
}