Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
ben_alman
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
4 ms
·
1.
▲
by
ben_alman
14y ago
Grunt works great on all those platforms!
2.
▲
by
ben_alman
14y ago
ShellJS is awesome. It's basically Unix shell commands for Node.js, which is excellent if you want to write a makefile equivalent in JavaScript. If, on the other hand, you want to execute web developer-centric tasks like concatenation and m
3.
▲
by
ben_alman
14y ago
And this behavior is totally obvious (not) var id = 123; function updateOptionalProperty(obj) { with (obj) { id = 456; } } updateOptionalProperty({id: 0}); id // 123 updateOptionalProperty({}); id // 456
4.
▲
by
ben_alman
14y ago
There's a built-in "watch" task, along with an open issue to further refine and document it. It's works very well so far, in that a developer can edit arbitrary files and have them all re-linted, unit tested, concatenated, etc as soon as th
5.
▲
by
ben_alman
16y ago
Ok, here's a first pass... http://jsfiddle.net/cowboy/FB9Nd/show/