Moni

Results 92 comments of Moni

I like it! I've been looking for similar tools for a while now. Is it tightly coupled with rel btw? I'd like to use it independently if possible ^^ unrelated...

> You can use the migration functionality independently 😄 but should it be in a separate package / repo?

I meant should the migrations "component" / functionality (the migrator package) of rel be in a separate GitHub repo / project, this way you don't have to clone / depend...

https://github.com/golang-migrate/migrate

I managed to find a solution using axios' `paramsSerializer` config field ```ts import qs from "qs" ... { paramsSerializer: (params) => qs.stringify(params, { arrayFormat: "comma", indices: false }), } ```

Ideally an API along the lines of ```ts const editProduct = useEditProductMutation({ // or useThrottledEditProductMutation throttle: { time: 1000 * 60, // 1 second amount: 50 // 50 requests per...