CodyC
Explore posts from serversAarktype
•Created by CodyC on 3/23/2025 in #questions
How do I name a morph?
For writing little CLI tools that parse JSON data or config files, it's so nice to be able to just throw the error and give the end user something very easy to make sense of w/o having to roll error formatting code all the time.
7 replies
Aarktype
•Created by CodyC on 3/23/2025 in #questions
How do I name a morph?
Other than this, so far ArkType has the best default error output of any of the TS validation libraries I've used. ❤️
7 replies
Aarktype
•Created by sbs on 3/23/2025 in #questions
string.numeric.parse accepts empty strings and returns a NaN
4 replies
Aarktype
•Created by sbs on 3/23/2025 in #questions
string.numeric.parse accepts empty strings and returns a NaN
What version are you on? I'm on 2.1 and it works as expected for me.
returns an error.
returns an error.
4 replies
Aarktype
•Created by sbs on 3/23/2025 in #questions
string.numeric.parse accepts empty strings and returns a NaN
That feels like a bug. Docs say
string.numeric
morphs a "well-formed numeric string" and "" doesn't seem well-formed to me. 😅4 replies
high memory usage using compiled binary in docker
I just mean, you said you can compile it and run it outside of docker and it only takes 70mb. that's 1/10th the size. I wonder if you're compiling a very different set of dependencies. (and that --include dist/ looks like a likely cuplrit.)
15 replies
high memory usage using compiled binary in docker
They have eventually dropped a bitHave links for that? I'm interested in containerized performance. That almost sounds like a bug. (ex: JVMs used to use the OS memory, not the container memory, to allocate initial heap.)
15 replies
How Node.js SQLite works on Deno?
if those will be reflected in Deno once Node.js deploys themIf you see a bug in Node.js, it might be interesting to test Deno's implementation to see if it's also present there. And I imagine the Deno team would appreciate a bug report if that's the case. I think one of the open issues/requests is for Node.js is to add async APIs, and I definitely hope Deno will implement that too once Node.js specifies the API. (Alternatively, I wouldn't mind Deno-specific async sqlite APIs, but I can see why it's simpler to just let Node design it so there aren't 2 to support.)
5 replies
Deno check/lint doesn't warn against obvious bugs
As for:
// Should warn on points[3] possibly being undefinedUnfortunately, even typescript "strict" mode doesn't enable this check. There is a LOT of code that just assumes your indexes are in-bounds. It can become tedious to check undefined for all cases. If you want that check, you have to enable: https://www.typescriptlang.org/tsconfig/#noUncheckedIndexedAccess
8 replies
Deno check/lint doesn't warn against obvious bugs
Didn't find it. Created one:
https://github.com/denoland/deno/issues/28433
8 replies
Native file selector for Deno
BTW, since you'll be working with commands, if you haven't seen it yet, Dax is a much nicer interface for that than Deno.Command. I use it all the time.
https://jsr.io/@david/dax#executing-commands
14 replies