http-server
http-server copied to clipboard
AdonisJS HTTP Server along with its Router
Hey! 👋🏻 This PR adds the possibility to create `plainCookie` without encoding them to base64 before saving them. ```ts response.plainCookie('name', 'romain', { encode: false }) ``` This can be useful...
## Why this feature is required (specific use-cases will be appreciated)? Current version adonisJS not supported Cyrillic parameters Example: Users should use decodeURIComponent function for decode any Cyrillic symbols in...
### Package version 7.0.2 ### Describe the bug Hello, I noticed that `router.resource` does not give Typescript error when the given controller does not implement all the needed REST methods....
Hey there! 👋🏻 This PR will cause the router to throw the exception `E_DIRECT_CONTROLLER_IMPORT` if users directly import the controller and HMR is enabled. **Why is this change needed?** If...
### Package version @adonisjs/[email protected] ### Describe the bug Calling `response.writeHead()` when using `response.stream()` prevents the stream from being piped to the response body. ### Cause of the issue In [line...
Hey there! 👋🏻 This PR replaces the usage of `qs` for `neoqs`. `neoqs` is a drop-in replacement for `qs` without the bloat. Moving to it means: - We don't care...
### Package version 6.12.1 ### Describe the bug Apparently named middleware are not working, when `.use` one it sends a 200 Ok, empty response. Steps to reproduce are pretty minimal/small:...
### Package version 7.2.3 ### Describe the bug I am trying to make an API Client test using HTTP client that has a simple plain cookie set. When I try...