Marc J. Schmidt
Marc J. Schmidt
Can you please provide a proper Git repository. We are here on Github, there is no need to share source-code as Zip files.
Works fine ``` docker run -ti --rm node:20-alpine /bin/sh / # apk add git openssh fetch https://dl-cdn.alpinelinux.org/alpine/v3.19/main/aarch64/APKINDEX.tar.gz fetch https://dl-cdn.alpinelinux.org/alpine/v3.19/community/aarch64/APKINDEX.tar.gz (1/20) Installing ca-certificates (20240226-r0) (2/20) Installing brotli-libs (1.1.0-r1) (3/20) Installing c-ares...
@vany0114 can you show me how you annotated the member of `PhoneNumber` in Marshal? I was looking at its definition at https://www.npmjs.com/package/@types/google-libphonenumber?activeTab=code but it seems `PhoneNumber` doesn't have any class...
regarding the custom serializer, we might have to check if it works with packages without runtimes types like `google-libphonenumber` though. it might be you have to define you own type...
No, `@OnLooad()` doesn't exist anymore. Maybe in the constructor is good enough? Or you can add additional calls to the serializer templates ```typescript serializer.deserializeRegistry.registerClass(libphonenumber.PhoneNumber, (type, state) => { // as...
@juanda147 ```typescript import { ClassType } from '@deepkit/core'; import { deserialize, resolveReceiveType } from '@deepkit/type'; const testDeserialized = (payload: Record, type: ClassType): T => { return deserialize(payload, undefined, undefined, undefined,...
Use ` import ImageResize from 'quill-image-resize';` instead of ` import {ImageResize} from 'quill-image-resize';`
thanks! I do use literal values for jsonb too, so string, number, etc. This works fine with `pg` so would be lovely if this library could support it as well...
How is text format slower? Last time I benchmarked, V8 was notoriously slow converting utf-8 text to binary and vice versa. Do you have any benchmarks showing that binary is...
Thank you! I'll play around with your client in binary mode and compare it with our pg implementation in our benchmark suite. Would be awesome if your client is much...