Evan Lurvey

Results 6 comments of Evan Lurvey

Typically you want to include your package-lock.json in your repo so any automated pipeline tools can use the exact same version that you used to develop, to build and ship...

I agree with @duckie this issue should not be closed yet. EKS support is laughable.

I also have needed crypto-js before for auth and signatures.

@ndajr cool feature! Are you familiar with the [httputil](https://pkg.go.dev/net/http/httputil#NewSingleHostReverseProxy) package? There is a reverse proxy that does a lot of the heavy lifting for you.

I had this issue using a batched query and the first execution has a schema error and swallowed the error the second attempt of the same query produces this error.

Sure Setup DB ```bash docker run --rm -it -p 5432:5432 -e POSTGRES_PASSWORD=password postgres ``` main.go ```go package main import ( "context" "fmt" "github.com/jackc/pgx/v5" ) func main() { ctx := context.Background()...