Rick Wong

Results 47 comments of Rick Wong

Exit the process? https://github.com/RickWong/react-isomorphic-starterkit/blob/bafe674f2d8f05aca80cced91bfe173993d81f5b/src/server.js#L108-L112

I like the idea. Do you have a use-case?

Return myFetch in an anonymous function. It has to do with how fetch expects function-wrapped values.

You can either use `global.btoa = require("btoa")` to polyfill the function, or pass it as third parameter to the middleware like `plusBasicAuth("user", "API_KEY", require("btoa"))`.

Can you share some code?

The correct way is to add a middleware with an error handler that returns the rejected value so the promise chain is effectively recovered. ``` js apiClient.addMiddleware((request) => { return...

+1 This project seems abandoned.

Thanks. I can confirm that the above work-around fixes it for now.

Transmit offers the following benefits of the Relay/GraphQL paradigm: - **Query co-location:** Write data queries close to where you use the data. This is really a clever invention by Facebook's...

> It's great to see people experimenting in this space and with the ideas of Relay. Thanks for inventing Relay in the first place. Its concept really complements the React...