
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.
kokaq-repl is an interactive REPL (Read-Eval-Print Loop) for exploring and debugging kokaq message queues via gRPC. kokaq-repl provides a developer-friendly CLI for inspecting namespaces, managing queues, and working with messages — including DLQ, peek-lock, and consumer group support.
go install github.com/kokaq/repl@latest
kokaq-repl --server localhost:9000 --namespace default
Inside the shell:
kokaq> list namespaces
kokaq> create namespace dev
kokaq> create queue orders --visibility 30s
kokaq> enqueue orders "hello world"
kokaq> dequeue orders
kokaq> ack 8423bcd0-221b-49d0
kokaq> dlq reprocess orders
--server Address of the gRPC server (default: localhost:9000)
--namespace Default namespace to use
--tls Enable TLS
--token Bearer auth token
--log-level Log verbosity: debug | info | warn | error
# Create a queue and send messages
kokaq> create queue logs
kokaq> enqueue logs "log entry 1"
kokaq> enqueue logs "log entry 2"
# Receive and ack messages
kokaq> dequeue logs
kokaq> ack <message-id>
# Explore DLQ
kokaq> dlq list logs
kokaq> dlq reprocess logs --limit 10
Contributions welcome! Please see CONTRIBUTING.md for code style and testing requirements.
MIT — open-source and production-ready.
FAQs
Unknown package
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.