Jan Grz
Jan Grz
Hi! Thank you for all the hard work in this library! 👍 I discovered that this library is using exactly the same paths for chrome binaries as [chrome-aws-lambda](https://github.com/alixaxel/chrome-aws-lambda) ( https://github.com/alixaxel/chrome-aws-lambda/blob/master/source/index.js#L166...
I am getting an `UnhandledPromiseRejectionWarning` when ECONNREFUSED is thrown on initial connection. ```javascript const Queue = require('bull'); const q = new Queue('test', 'redis://localhost:8009'); // no redis instance here q.on('error', e...
```js const msg = require('msgpack-lite'); msg.decode(msg.encode({a:undefined})); // { a: null } ``` [See related issue in msgpack-lite repo](https://github.com/kawanet/msgpack-lite/issues/71) Please consider changing the packing library to [msgpack-js](https://github.com/creationix/msgpack-js) as the same issue...
I need to generate iframes dynamically. When the iframe src is from blob and starts with `blob:https://something` it is not displayed in WebBLE. It works correctly on mobile Safari. Here...
I am looking for a safe operation to change money amounts between different currencies. ```js const { $, multiply } = require('moneysafe'); const multiplyMoney = (first, second) => multiply($.of(first), $.of(second)).valueOf();...
I have an app that is deployed to all AWS regions. This is my `serverless.yml` (simplified) ```yaml provider: name: aws stage: ${opt:stage, "dev"} runtime: nodejs12.x stackName: ${self:serviceName}-${self:provider.stage} memorySize: 128 mainRegion:...
Serverless seems to have a built-in [configuration options for the deploymentBucket](https://www.serverless.com/framework/docs/providers/aws/guide/serverless.yml/#deployment-bucket). 1. Will the options above work without the `serverless-deployment-bucket` plugin installed? 2. If so, what is the role of...
### Node.js version 16.19.1 ### NPM version 8.19.3 ### @checkly/cli version 4.0.12 ### Steps to reproduce Repro repo: https://github.com/checkly/cli-playground-jan/tree/issue-file-outside-temp-dir ### What is expected? The check should pass ### What is...
### Environment information ```plain text System: OS: macOS 15.5 CPU: (10) arm64 Apple M1 Max Memory: 194.42 MB / 32.00 GB Shell: /bin/zsh Binaries: Node: 20.19.0 - ~/.local/state/fnm_multishells/37246_1752595324283/bin/node Yarn: undefined...