PaulMaly

Results 32 comments of PaulMaly

@aral @hpl002 Hi guys, I'm pretty sure it should work: ```javascript app.use((req, res, next) => { createProxyMiddleware(path, { selfHandleResponse: true, onProxyRes(proxyRes, req, res) { if (proxyRes.statusCode === 404) { return...

Maybe I will. Is there any public `staging` server for cubejs where I can test the client without the need to deploy the cubejs server by own?

Thanks, @koistya, but without this part "router" unuseful for me. And I don't know why you call this library a "router".

Seems, we already have something similar with `head`: ```javascript const { head, html, css, body } = App.render({ ... }); ``` And can be used in Sapper like this: ```html...

@jorgegorka Sorry, but everyone knows that. Here we're talking about a universal (client and server) and declarative way to set body classes. The way you described won't work with SSR...

@Conduitry @Rich-Harris Any comments here? Seems this proposal is very popular.

Yea, this feature would be very very useful for many svelte devs! There's a solution in user-land (for example https://github.com/ghostdevv/svelte-body), but all they're not playing well with SSR. And it's...

@matthewp Any news here? Is this patch reasonable?

@matthewp I believe it's a very obvious case to be tested. Seems we should trigger `_onpopstate` somehow any way in all possible cases. There's the case when `_onpopstate` never be...