
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
WorkMQ é uma biblioteca robusta para gerenciamento de filas de trabalho usando Redis. Ela permite criar, gerenciar e processar trabalhos assíncronos de forma confiável e escalável.
npm install workmq
# ou
yarn add workmq
import { Queue, Worker } from 'workmq';
// Criar uma fila
const fila = new Queue('minha-fila');
// Adicionar um trabalho à fila
await fila.add('enviar-email', {
destinatario: 'usuario@email.com',
assunto: 'Olá!'
});
// Processar trabalhos da fila
const worker = new Worker('minha-fila', async (trabalho) => {
// Aqui está a lógica para processar o trabalho
console.log(`Enviando email para ${trabalho.data.destinatario}`);
// Retorna um resultado quando concluído
return { enviado: true };
});
A documentação completa da API está disponível na pasta docs/ deste projeto. Abra o arquivo docs/index.html no seu navegador para acessar a documentação detalhada.
Alguns testes automatizados estão falhando atualmente. Esses problemas estão documentados no arquivo KNOWN_ISSUES.md e serão abordados em uma futura atualização.
Este projeto está licenciado sob a Licença MIT - veja o arquivo LICENSE para detalhes.
FAQs
Queue for messages and works based on Redis
We found that workmq demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.