Pooya Parsa
Pooya Parsa
You can use a `server.sh` script that starts the server with SSL. ```sh #!/bin/bash export NITRO_SSL_CERT="`cat path/to/cert.pem`" export NITRO_SSL_KEY="`cat path/to/key.pem`" exec node .output/server/index.mjs ``` "start": "./server.sh"
Let's first focus on querying the public NPM registry API without caching (which is main usecase of this) and iterate to add more features like npmrc detection, etc.
Moving to the Web APIs for the server, _after_ response stagge cannot be stably hooked on since the platform handles the response object when returned. Two possible workarounds (although I...
`beforeResponse` should work with the error handler in v2. Nitro hasn't migrated yet (on it) but if you can reproduce any issue with it and h3 only please feel free...
This is valid fix thanks but it can cause cache busting (for any current usage) can you checm this? In case of changing hashes we should do it for nitro...
Added basic SWA to [nitro-deploys](https://github.com/nitrojs/nitro-deploys). [link](https://delightful-mushroom-0f662f303.4.azurestaticapps.net/base/). Basic dynamic paths seems working fine.
using confbox is good idea. Also we might introduce a standard util for unjs/nypm to read npmrc config. (PR more than welcome)
Thanks for making PR. Although it is slightly a breaking/risky behavior change i was considering to do similar change also in order to allow async plugins. I will carefully review...
(delaying to next minor) -- update marked as draft to investigate more
Thank you!!