Dax Chen
Dax Chen
Hi, first of all, thank you for such a great library! I've been using hotel for several months now, and can't imagine working without it! I have a website which...
Hi, @matb33 [Here's a repo to reproduce the error](https://github.com/YuHuaiChen/meteor-collection-hooks-and-collection2-error) When inserting inside meteor method, only client side runs the before.insert hook before collection2 's schema check. Server side won't run...
when logging structured data, for example: ```js log.warn({ foo: 123 }); ``` It shows as: ```js logs: [{message: "test warn [object Object]", level: "warn", logger: "",…}] ``` console shows normal...
According to https://github.com/farzher/fuzzysort/blob/c7f1d2674d7fa526015646bc02fd17e29662d30c/fuzzysort.js#L94, the `obj` key exists on the `results` argument for the `scoreFn` callback. The typing for `obj` does exist for `KeyResult` and `KeysResult`, but is missing for `scoreFn?:...
Hi, This is the best tutorial I found for using redux with meteor, great thanks! However, I notice that you changed a lot of code since [this blog post](http://marmelab.com/blog/2015/11/27/meteor-webpack-react-redux.html), and...