Paul
Paul
`redaxios` also implements the `AbortController`, so we will finally be able to cancel our requests. This will be especially useful in React, where we could cancel pending requests, whenever the...
I think we should revisit this issue, in particular these 2 topics in relation to variable naming: 1. Library specific naming guidelines; e.g. for `styled-components` are we prefixing each styled...
I think that we don't need a default `tsconfig.json`, as it will have to be updated either whenever TS decides to add something or when node upgrades and we need...
@ThijsTyZ This PR no, but we probably want to turn @ThaNarie's suggestions into an issue & then PR.
IMO, I think we should get rid of `yarn start` entirely. As @ThaNarie already mentioned it is indeed used by the majority of the public and most of the time...
I paraphrased _recommendation_ to _suggestion_, but now I see that it just solidifies the initial point that word should be used with a clear intention :)
I guess I had a brain freeze and forgot about `opened`. So the logic wouldn't have to change at all then. ```js const [opened, setOpened] = useState(false); const open =...
> Using isOpen and setOpen could also work. This would sort of throw a wrench into searching through a file. If for instance I wanna view all usages of `isOpen`...
I managed to fix this by adding the `prefix` option: ```ts await server.register(proxyPlugin, { prefix: "/api", upstream: "http://localhost:3002", }); ``` However, this does mean that now your clients will have...