
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.
@llmaudit/logship
Advanced tools
Enterprise-grade, zero-dependency log shipping agent for @llmaudit. Lightweight, reliable, and performance-focused.
A high-performance, lightweight Node.js log shipping agent designed to tail files and pump logs to the LLM Audit Ingestion Server.
npm install @llmaudit/logship
Run Logship without creating a configuration file:
npx @llmaudit/logship -k your-key -f access.log,error.log
If you have many logs or complex settings, use a JSON file:
npx @llmaudit/logship logship.config.json
If you have a file named logship.config.json in your current folder, simply run:
npx @llmaudit/logship
| Flag | Short | Description |
|---|---|---|
--api-key | -k | Your unique API Key |
--endpoint | -e | Ingestion Server URL (Defaults to https://log.llmaudit.ai) |
--files | -f | Comma-separated list of log files |
--env | Environment tag (prod, staging, dev) | |
--service | -s | Name of the service |
--interval | Flush interval in ms | |
--batch-size | Max logs per batch |
const { initLogger } = require('@llmaudit/logship');
const agent = initLogger({
apiKey: "your-api-key",
logFiles: ["./app.log"],
env: "prod",
service: "my-app"
// endpoint: "https://log.llmaudit.ai" (Optional: Defaulted for you)
});
// agent.shutdown();
FAQs
Enterprise-grade, zero-dependency log shipping agent for @llmaudit. Lightweight, reliable, and performance-focused.
We found that @llmaudit/logship demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers 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.