David Schoonover

Results 11 comments of David Schoonover

I typically write [Coco](https://github.com/satyr/coco) (a [dialect](https://github.com/satyr/coco/wiki/additions) of [coffee](https://github.com/satyr/coco/wiki/improvements)), so I'm guessing it has to do with whitespace and a burning desire for semi-colons...

I'm in favor of this. In Python, this feature is called a context block and it uses the `with` statement: ``` python with open('readme.md', 'rU') as f: for line in...

Can you give an example? I don't think I follow.

Won't this break compat with node < 0.8?

That is, shouldn't it be: `exists = fs.existsSync || path.existsSync` ?

Another option would be to make `jscov` an optional/runtime dependency. Since npm doesn't offer support for optional deps (and this isn't a dev-only library), we could check for it when...

Any big reason not to prompt the user and install it ourselves on `--cov`? The call to `npm install node-jscoverage` is complicated by wanting to install it globally if expresso...

I fiddled with Mercurial for a bit to attempt to import the history, but a solution didn't immediately present itself, so I went back to writing code. :) I'm not...

Thanks. I'll look into it at some point, though it might be a while.

Ooof. Can you be more specific with a test-case?