Ben Southgate

Results 9 comments of Ben Southgate

one other thought on this, might want to wait until we figure out if `connect` might change after discussion in https://github.com/stasm/innerself/issues/19

Adding a `combineReducers` function would be nice, definitely something that will usually be useful. As for selectors, one option might be to adopt/suggest a `props` pattern similar to react for...

I also like the idea of mirroring `react-redux`'s HOC pattern for `connect` by returning a function which takes a component. ```javascript const ConnectedFoo = connect(state => ({ bar: state.inner.bar }))(Foo)...

sure everyone was already thinking this, but it would be awesome if the site itself was pure innerself. Happy to flesh out some development (rollup / routing / folder org)...

@GoldenRust sounds good! Maybe I'll make a basic `innerself-cli` which bootstraps innserself + rollup + babel or typescript.

@GoldenRust @stasm made this https://github.com/bsouthga/innerself-app for bootstrapping innerself apps -- would love any input on default folder structure (just a note that its written in typescript but defaults to creating...

Thanks for creating and maintaining this lib! It looks like `findAndModify` now returns `{ value: doc, lastErrorObject }` instead of `doc` https://github.com/gordonmleigh/promised-mongo/blob/master/test/Collection.js#L161-L176 this seems to contradict the readme which gives...

Yeah, it worked great (we eventually switched to the native mongodb driver itself, but this ran in production for a while)