
Security News
Axios Maintainer Confirms Social Engineering Attack Behind npm Compromise
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.
code-inspector-plugin-x
Advanced tools
Enhanced code inspector with copy-path feature (Cmd+Opt+Shift+Click). Fork of zh-lx/code-inspector.
🚀 Enhanced code inspector with copy-path feature. Fork of zh-lx/code-inspector.
Cmd+Option+Shift+Click (Mac) / Ctrl+Alt+Shift+Click (Windows)file:line:column (works directly with VSCode's Go to File)Option+Shift+Click (Mac) / Alt+Shift+Click (Windows)npm install --save-dev code-inspector-plugin-x
// vite.config.js
import { codeInspectorPlugin } from 'code-inspector-plugin-x'
export default {
plugins: [
codeInspectorPlugin({ bundler: 'vite' })
]
}
// webpack.config.js or next.config.js
const { codeInspectorPlugin } = require('code-inspector-plugin-x')
module.exports = {
plugins: [
codeInspectorPlugin({ bundler: 'webpack' })
]
}
// For Next.js:
module.exports = {
webpack: (config, { dev }) => {
if (dev) {
config.plugins.push(codeInspectorPlugin({ bundler: 'webpack' }))
}
return config
}
}
// rspack.config.js
const { codeInspectorPlugin } = require('code-inspector-plugin-x')
module.exports = {
plugins: [
codeInspectorPlugin({ bundler: 'rspack' })
]
}
The copied path uses the format: file:line:column
Example: src/components/Button.jsx:25:10
This format works directly with:
Based on the excellent code-inspector by zh-lx.
Enhanced with copy-path feature by code-inspector-x.
MIT
FAQs
Enhanced code inspector with copy-path feature (Cmd+Opt+Shift+Click). Fork of zh-lx/code-inspector.
We found that code-inspector-plugin-x 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
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.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.