apolodoro
apolodoro
Explore posts from servers
CDCloudflare Developers
Created by apolodoro on 4/1/2025 in #workers-help
Questdb Nodejs Client not working
@Walshy sorry for pinging 😔 but you are always so helpful...
3 replies
CDCloudflare Developers
Created by apolodoro on 4/1/2025 in #workers-help
Questdb Nodejs Client not working
I have contacted the questdb team which came back with this From the error stacktrace it seems like somehow node.js is messed up, like Uint8Array.fill() would have a different prototype, or could be from the a different version of node?Node source code:
/**
* Creates a new filled Buffer instance.
* alloc(size[, fill[, encoding]])
*/
Buffer.alloc = function alloc(size, fill, encoding) {
validateNumber(size, 'size', 0, kMaxLength);
if (fill !== undefined && fill !== 0 && size > 0) {
const buf = createUnsafeBuffer(size);
return _fill(buf, fill, 0, buf.length, encoding);
}
return new FastBuffer(size);
};
/**
* Creates a new filled Buffer instance.
* alloc(size[, fill[, encoding]])
*/
Buffer.alloc = function alloc(size, fill, encoding) {
validateNumber(size, 'size', 0, kMaxLength);
if (fill !== undefined && fill !== 0 && size > 0) {
const buf = createUnsafeBuffer(size);
return _fill(buf, fill, 0, buf.length, encoding);
}
return new FastBuffer(size);
};
In our case the fill parameter is 0, so ending up creating a new FastBuffer, which extends Uint8Array.
class FastBuffer extends Uint8Array {
// Using an explicit constructor here is necessary to avoid relying on
// `Array.prototype[Symbol.iterator]`, which can be mutated by users.
// eslint-disable-next-line no-useless-constructor
constructor(bufferOrLength, byteOffset, length) {
super(bufferOrLength, byteOffset, length);
}
}
class FastBuffer extends Uint8Array {
// Using an explicit constructor here is necessary to avoid relying on
// `Array.prototype[Symbol.iterator]`, which can be mutated by users.
// eslint-disable-next-line no-useless-constructor
constructor(bufferOrLength, byteOffset, length) {
super(bufferOrLength, byteOffset, length);
}
}
…and after this I am kind of lost. According to the stacktrace Uint8Array.fill(...) is called with the wrong parameters. https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/fillstart is the second parameter. How the utf8 string gets there ??? It could also be that typescript compiles into some weird js code, so maybe it is a tsc bug? But no one ever reported any issues with using the client from typescript. 1:27 I wonder if Cloudfare could help to investigate the issue? Maybe it is really something to do with how they run the code, maybe the node libraries get mixed up somehow, or they bind a new prototype for the fill() function?
3 replies
CDCloudflare Developers
Created by Soly on 11/12/2024 in #pages-help
How do I read environment variables from a SvelteKit website?
No description
18 replies
CDCloudflare Developers
Created by Soly on 11/12/2024 in #pages-help
How do I read environment variables from a SvelteKit website?
Actually I was testing just now and apparenlty if you set the variables in the variables and secret section of the git auto build section you dont even need to se variables through the cli or wrangler file. Just mirror your .env and you are set. Works also locally.
18 replies
CDCloudflare Developers
Created by Soly on 11/12/2024 in #pages-help
How do I read environment variables from a SvelteKit website?
Nice! I will try
18 replies
CDCloudflare Developers
Created by Soly on 11/12/2024 in #pages-help
How do I read environment variables from a SvelteKit website?
but do you have a .env or a .dev.vars?
18 replies
CDCloudflare Developers
Created by Soly on 11/12/2024 in #pages-help
How do I read environment variables from a SvelteKit website?
@kooliebwoykg this does not work for workers deployments only for pages right?
18 replies
CDCloudflare Developers
Created by destroyerman on 7/14/2024 in #general-help
Contentful issues when deploy
could we have a working example of a proper way to del with environment variables when deploying sveltekit to workers. I think it would help a lot.
12 replies
CDCloudflare Developers
Created by apolodoro on 2/17/2025 in #workers-help
Deploy Sveltekit on Workers with Bun
Solved - Remember to add "bun run build" specifically as your build command
2 replies
CDCloudflare Developers
Created by apolodoro on 1/22/2025 in #workers-help
Deploying sveltekit monorepo
I'll try right away
15 replies
CDCloudflare Developers
Created by apolodoro on 1/22/2025 in #workers-help
Deploying sveltekit monorepo
Uuuu
15 replies
CDCloudflare Developers
Created by apolodoro on 1/22/2025 in #workers-help
Deploying sveltekit monorepo
Nope and no luck pinging...
15 replies
CDCloudflare Developers
Created by apolodoro on 1/22/2025 in #workers-help
Deploying sveltekit monorepo
@DaniFoldi sorry for the ping but im not sure how to ask for help since no one from the team apparently saw this thread...
15 replies
CDCloudflare Developers
Created by apolodoro on 1/22/2025 in #workers-help
Deploying sveltekit monorepo
Should i specify anything other than bun run build for the cloudflare build command?
15 replies
CDCloudflare Developers
Created by apolodoro on 1/22/2025 in #workers-help
Deploying sveltekit monorepo
I can build and deploy to cloudflare locally the problem is when cloudflare has to run the build
15 replies
CDCloudflare Developers
Created by apolodoro on 1/22/2025 in #workers-help
Deploying sveltekit monorepo
It does not fail locally
15 replies
CDCloudflare Developers
Created by apolodoro on 1/22/2025 in #workers-help
Deploying sveltekit monorepo
And this is the app package.json
15 replies