Edson Samuel Jr @mstred
Chris Wanstrath @defunkt
// // main.m // Atomicity // // Created by Chris Wanstrath on 8/18/11. // Copyright 2011 GitHub. All rights reserved. // #import <Cocoa/Cocoa.h> #import <WebKit/WebKit.h> int main(int argc, char *argv[]) { return NSApplicationMain(argc, (const char **) argv); }
Cheng Zhao @zcbenz
...f.k.a. node-webkit
...f.k.a. Atom Shell
One ~runtime~ to rule them all!
npm install --save-dev electron-prebuilt
git clone https://github.com/atom/electron-quick-start npm install
function linkify( selector ) { if( supports3DTransforms ) { var nodes = document.querySelectorAll( selector ); for( var i = 0, len = nodes.length; i < len; i++ ) { var node = nodes[i]; if( !node.className ) { node.className += ' roll'; } } } }
Code syntax highlighting courtesy of highlight.js.