queue-run icon indicating copy to clipboard operation
queue-run copied to clipboard

👋 Web 2.0 framework to make building back-ends and APIs easy and fun: HTTP, FIFO queues, WebSocket, and more …

Results 10 queue-run issues
Sort by recently updated
recently updated
newest added

Bumps [terser](https://github.com/terser/terser) from 5.10.0 to 5.14.2. Changelog Sourced from terser's changelog. v5.14.2 Security fix for RegExps that should not be evaluated (regexp DDOS) Source maps improvements (#1211) Performance improvements in...

dependencies

Bumps [parse-url](https://github.com/IonicaBizau/parse-url) from 6.0.0 to 6.0.2. Commits See full diff in compare view [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=parse-url&package-manager=npm_and_yarn&previous-version=6.0.0&new-version=6.0.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter...

dependencies

- [ ] Spin URL constructor to own module - [x] URL constructor: cache path to regexp and list of path parameters - [x] URL constructor: add query parameters for...

Useful for managing context if you have middleware or other composition - `context` is just an object with key/value pairs - `context.user` is the current user (readonly) - `context.timeout` is...

Common usage for warmup is to fetch resources. - `prefetch.add(url, fetcher?)` adds a resource with the URL and immediately starts loading it - `prefetch.get(url)` waits for resource to load and...

https://developer.mozilla.org/en-US/docs/Web/API/Push_API Conceptually should work similarly to WebSocket where you send a notification to the current user or specific user: ```ts await webPush.send(myMessage); await webPush.to(userId).send(myMessage); ``` There needs to be an...

The idea is to have specific message handler. Maybe: - `socket/action_join.ts` for all messages that contain `action: "join"` - `socket/[room].ts` for all messages that contain the property `room` (any value)...

https://docs.aws.amazon.com/lambda/latest/operatorguide/sqs-retries.html ```ts export const config = { retries: 5; delay: "1m"; }; ``` - Do we use "retries" or "attempts" (3 retries = 4 attempts to process)? - What's a...

Bumps [parse-url](https://github.com/IonicaBizau/parse-url) from 6.0.0 to 6.0.5. Commits See full diff in compare view [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=parse-url&package-manager=npm_and_yarn&previous-version=6.0.0&new-version=6.0.5)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter...

dependencies

I'd like to add some ignore to the filesystem watcher. I'd like to ignore for example test/ or tests/, __test__, *.test.* folder/files... Do you think I should add it directly...