Paul Rumkin
Paul Rumkin
Add [Content-Range](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Range) support info v/fs packages.
Add Error3 to notify user about the errors gracefully.
Pipeline workflow is an alternative to event listening. Which makes request handling more predictable. Code example: ```javascript const Plant = require('@plant/plant') const {createPipeline} = require('@plant/plant') const plant = new Plant()...
Fix JSDoc comments: - [ ] Create list of packages - [ ] Fix packages' comments - [ ] Add missing comments
- [ ] Research redirection usage and redirection variants: temporary, permanent, other. - [ ] Decide to use the most simple or the most common interface.
Implement [Response#redirected](https://developer.mozilla.org/en-US/docs/Web/API/Response) property to specify if response status code is a redirected status.
Export status code dictionary. * Decide is it necessary. * Decide what interface should it has.
1. Use default-src `'none'` for most resource types. 2. Create exceptions list for resources which may have `'self'` value: * styles * scripts * images
Create `@plant/csp` package to manage Content-Security Policies. Handler should add `csp` context entry which allow to manage CSP policies as data. After request handling is finished, convert CSP into string...