Khiet Tam Nguyen
Khiet Tam Nguyen
Hmm good point on remote servers. If this feature does get implemented, it can be made opt-in? (disabled by default). I wonder how other services deal with the SSH performance...
@unleashit if it's a publically accessible service, you can use monitoring tools like [uptime-kuma](https://github.com/louislam/uptime-kuma). I think having a healthcheck agent/daemon on each server to expose the internal healthcheck endpoint of...
Thanks @wallzero - are you able to also create an issue for this here: - https://github.com/httptoolkit/esm/issues `import-sync` uses @httptoolkit/esm under the hood.
Your image is a little low on resolution so I can't really see them. A few questions 1. Can you provide a minimal reproducible example as a gist or git...
It takes around 5-6 seconds for me, but yeah that is slow. I've uploaded your reproducible example here: - https://github.com/nktnet-bug-report/import-sync-138 If you're on the latest version of node, you'll be...
Hi @chadxz, Which package are you trying to import specifically? Or is it any package in general under your current environment/setup? As an aside, I would also suggest looking into...
Something you could try is removing the extension from the path and see if it would be picked up, e.g. ```ts function loadConfigFromFile(path: string): NestedConfig { try { return importSync(path.replace(/\.[^/.]+$/,...
Is it possible to use a serialised format like `JSON` for the config? Then you can do [fs.readFileSync](https://nodejs.org/api/fs.html#fsreadfilesyncpath-options) to load the config, for example, and use something like [zod](https://zod.dev) for...
Services deployed via Dokploy Inaccessible After Customizing Traefik Ports via Environment Variables
I got it working with the following script, which changes port 80 -> 81 and port 443 -> 444: EDIT: Did not work (see edit for the old non-working code)...
Services deployed via Dokploy Inaccessible After Customizing Traefik Ports via Environment Variables
I've made the pull request on the Dokploy/Website repository :) - https://github.com/Dokploy/website/pull/14