Beyond SPEED and JOY
coffeescript space-pen
Package dependencies
And its chrome webkit
autocomplete-suggestion-list.select-list.popover-list ol.list-group li {
color: inherit;
}
Grammar was a PITA.
But once done. Debugging it was the most beautiful thing *ever*
spawn(process.execPath, [
// '--debug', // Uncomment if you want to debug the child process
childJsPath
]
, { cwd: path.dirname(childJsPath), env: { ATOM_SHELL_INTERNAL_RUN_AS_NODE: '1' }
, stdio: ['ipc'] });
And it becomes async* with good typing!
childQuery<Query, Response>(func: (query: Query) => Response): (data: Query) => Promise<Response>