
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.
CLI tool that scans Node.js projects and detects missing common npm utilities (DX blindspots)
Scans Node.js projects and detects missing common npm utilities (DX blindspots).
Many Node.js projects reinvent the wheel or use raw APIs when battle-tested packages exist. This tool scans your codebase and identifies patterns that suggest you might benefit from adding a dedicated package.
npx blindspot .
Or install globally:
npm install -g blindspot
blindspot /path/to/project
# Scan current directory
blindspot .
# Scan specific project
blindspot /path/to/project
# JSON output (for CI/scripts)
blindspot . --json
📦 blindspot
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Project: my-app
Files scanned: 83
Dependencies: 30
Found 2 potential DX gaps:
┌─ HTTP Request Retry/Resilience
│ Category: Networking
│ Confidence: ████████░░ 85%
│ Reason: HTTP calls detected without retry/resilience patterns
│
│ Recommended packages:
│ npm install p-retry
│ npm install axios-retry
└─────────────────────────────────────────
┌─ Logging Abstraction
│ Category: Observability
│ Confidence: ████████░░ 80%
│ Reason: heavy console.log usage without structured logging
│
│ Recommended packages:
│ npm install pino
│ npm install winston
└─────────────────────────────────────────
.js, .ts, .tsx files (ignores node_modules, dist)package.json to check existing dependencies| ID | Category | Detects |
|---|---|---|
env-management | Configuration | process.env usage without dotenv |
cli-parsing | CLI | process.argv or bin entry without commander/yargs |
logging | Observability | Heavy console.log without pino/winston |
scheduler | Scheduling | setInterval without node-cron |
config-validation | Configuration | Config/env without zod/joi validation |
http-retry | Networking | fetch/axios calls without retry logic |
testing | Testing | No test framework in multi-file project |
file-watching | Development | fs.watch without chokidar |
MIT
FAQs
CLI tool that scans Node.js projects and detects missing common npm utilities (DX blindspots)
The npm package blindspot receives a total of 0 weekly downloads. As such, blindspot popularity was classified as not popular.
We found that blindspot 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.