Manuel Astudillo
Manuel Astudillo
First time I try Hegel on an existing javascript codebase, I just installed the module and: ``` ✗ npx hegel Cannot read property 'argumentsTypes' of undefined ``` any ideas?
Hello, I am a quite confused about how I should build my updates.json file, it is a dictionary with keys mapping to some values, but how should be the keys...
In the following code server side: ``` io.of('/test').use(function(socket, next){ console.log("Authenticating...") //next(); }); ``` A socket.io connecting to the /test namespace will never connect (obviously), but it will never either get...
Consider this code based on the example code https://github.com/vadimdemedes/ink/tree/master/examples/use-focus-with-id: ```ts import { render, Box, Text, useFocus, useInput, useFocusManager } from "ink"; import { useEffect } from "react"; export const App...
I have seen that there are old discussions about this functionality. The reason for creating this new issue is that I believe that this feature is really a must-have, especially...
Due to the recent popularity of https://upstash.com as a Redis hosting service, we are starting to get reports of people trying Bull and getting all kinds of weird behaviors. Currently,...
When adding jobs to the queue, it should be possible to define a maximum TTL. If the job takes more time to be processed than the TTL, it would be...
I have been working in designing a new feature for Bull that I feel would be really useful for model more complex systems, where there are many specialized queues working...
In some scenarios it is useful to be able to limit jobs by job type instead of by queue. We could easily accomplish this by having several rate limiter keys...