Ken Carpenter
Ken Carpenter
**Is your feature request related to a problem? Please describe.** For smaller projects where a full mongodb server is overkill, it would be great to use `rest-hapi` with NeDB: https://github.com/louischatriot/nedb...
Is anyone else seeing the situation where Crow does not close the socket of a request until 5 seconds after `resp.end()` is called? This is causing an issue with `lighttpd`...
If you have defined the global `enforce_missing:true` flag, and you attempt to get a subset of fields of a document(s) by using the `without()` function, Thinky throws an error essentially...
I have a `Class` model with the following definition: ``` var Class = thinky.createModel('Class', { id: type.string().options({enforce_missing: false}), name: type.string(), isActive: type.boolean(), schoolId: type.string() }); // Relationships Class.belongsTo(School, 'school', 'schoolId',...
When running generators from the new CLI feature, they are not very random. Here is the output of calling "chance word" several times in a row: vapik teogefe suvaflud ut...
Any plans for adding TypeScript type definitions? I've currently just used `require('react-csjs')` and am importing it as type `any`, but would rather not do that. If this isn't on your...
I noticed an issue while testing a fix for #52. The code doesn't seem to get (or maybe just doesn't correctly process) the last mouse event when dragging a splitbar....
I was just tracking down a performance issue and have across what seems to be the root of the issue. I would type into an `` control whose value is...
Has anyone done any work to sync NuclearJS state to React Router query parameters? I currently do `router.transitionTo()` with the new URL query params whenever an action changes some state...