francesco
francesco
> Have you tested that this works with the official SdI ? yes, it is the same code from https://forum.italia.it/t/sdicoop-configurazione-php-soapclient-per-invio-di-test/5528/5?u=simevo without the ssl implementation. > Can we include this code...
Ho fatto una PR https://github.com/italia/fatturapa-testsdi/pull/56
Hi @charmander also on the vanilla "result object" the array length is pre allocate, why not on native? https://github.com/brianc/node-postgres/blob/master/packages/pg/lib/result.js#L51 This PR just align the behaviour. Side note: Side note: preallocate...
> This project is plain JavaScript. There isn't any need for compiling anything. `google-closure-compiler` is a plain javascript minifier/optimizer
> Why does this one need `_checkPgPass` on top of `_handleAuthSASL`’s? `this.password` can be a `function` and `_checkPgPass` handle this case, if `this.password` is a function, call it and set...
Just for remind, the pipeline mode should also be implemented in the `pg-native` client: https://github.com/brianc/node-postgres/blob/master/packages/pg-native/index.js#L9 Thanks so much!
Hi @mcollina, I hope you're doing well! I wanted to kindly check if you're still interested in working on this feature. I'd really love to see it implemented, as it...
Side note for those who want to try finishing this PR: The current implementation relies only on prepared statements (named queries) to connect the result to the correct query, but...
Maybe is the same error? Dockerfile ``` FROM node:23-slim ENV DEBIAN_FRONTEND noninteractive RUN apt-get update && apt-get -y install git python3 libpq-dev g++ make dos2unix && rm -rf /var/lib/apt/lists/* /var/cache/apt/archives/*...
Another use case... [Transloco](https://github.com/jsverse/transloco) use a directive to expose a function into a template ( https://jsverse.gitbook.io/transloco/core-concepts/translation-in-the-template#structural-directive ) ```html {{ t('title') }} {{ t('description') }} ``` instead of use the pipe...