Jason Kuhrt

Results 240 issues of Jason Kuhrt

On Nexus we discovered that `fs-jetpack`'s `find` was very slow. When we investigated why, it turned out to be because ignores were only being executed as an in-memory filter, not...

We're currently working on tree-shaking Nexus builds. We're trying rollup and webpack. With rollup we've been hitting some issues with fs-jetpack, such as: ``` Error: 'inspect' is not exported by...

It would be nice to have a way to find files in or upward of `cwd`. This is common for e.g. finding the nearest `tsconfig.json`, `package.json`, ... etc. For performance...

@maccman I was wondering if you could offer some comparison to express. I asked TJ on IRC his thoughts: ``` kuhrt tjholowaychuk: do you have an opinion on Ace? https://github.com/maccman/ace...

It would be nice to have this hosted at NPM.

Currently the `import` or `

Do you think natively supporting _[Design by contract](http://en.wikipedia.org/wiki/Design_by_contract)_ would be too much of a framework-like feature for coco? There are a few javascript libraries tackling the issue already: [http://weblogs.mozillazine.org/weirdal/archives/016921.html](http://weblogs.mozillazine.org/weirdal/archives/016921.html) [http://www.cerny-online.com/cerny.js/](http://www.cerny-online.com/cerny.js/)...

I am curious what thoughts you have about supporting something like immutable.js where the structural typing would make sense to the user but technically fail because contracts.js would not know...

It would be nice to see flyd represented here https://github.com/cujojs/most/tree/master/test/perf I notied that flyd relies heavily on lexical scope to access other streams. In a library context this scope chain...

Consider this library https://github.com/flatiron/revalidator It allows arbitrary validation like: ``` r.validate({a:5},{properties: {a: { type: 'string' } } } ) { valid: false, errors: [ { attribute: 'type', property: 'a', expected:...