
Research
/Security News
npm Author Qix Compromised via Phishing Email in Major Supply Chain Attack
npm author Qix’s account was compromised, with malicious versions of popular packages like chalk-template, color-convert, and strip-ansi published.
@oxog/devinspector
Advanced tools
Professional developer inspector tool for real-time debugging of web applications
A professional developer inspector tool for real-time debugging of web applications. Zero dependencies, framework-agnostic, and production-ready.
npm install @oxog/devinspector --save-dev
yarn add @oxog/devinspector -D
<script src="https://unpkg.com/@oxog/devinspector/dist/devinspector.umd.min.js"></script>
import DevInspector from '@oxog/devinspector';
const inspector = new DevInspector({
enabled: process.env.NODE_ENV !== 'production'
});
// Show the inspector
inspector.show();
const DevInspector = require('@oxog/devinspector').default;
const inspector = new DevInspector();
<script src="https://unpkg.com/@oxog/devinspector"></script>
<script>
const inspector = new DevInspector();
inspector.show();
</script>
const inspector = new DevInspector({
// Enable/disable the inspector
enabled: true,
// Position on screen
position: 'bottom-right', // 'top-left' | 'top-right' | 'bottom-left' | 'bottom-right'
// Theme
theme: 'auto', // 'dark' | 'light' | 'auto'
// Keyboard shortcuts
hotkeys: {
toggle: 'ctrl+shift+d',
minimize: 'ctrl+shift+m'
},
// Features to enable
features: {
network: true,
console: true,
performance: true,
errors: true,
state: true,
dom: true,
storage: true
},
// Storage limits
maxNetworkEntries: 1000,
maxConsoleEntries: 500,
// Stack traces
captureStackTraces: true,
// Network filters
networkFilters: {
hideAssets: false,
hideCached: false
},
// Callbacks
onError: (error) => console.error(error),
onPerformanceIssue: (issue) => console.warn(issue)
});
// Show/hide inspector
inspector.show();
inspector.hide();
inspector.toggle();
inspector.minimize();
// Destroy inspector
inspector.destroy();
// Manual tracking
inspector.track('custom-metric', { value: 123 });
inspector.markStart('operation');
inspector.markEnd('operation');
// Export/import data
const data = inspector.export();
inspector.import(data);
// Listen to events
inspector.on('network:request', (request) => {
console.log('Network request:', request);
});
inspector.on('error:uncaught', (error) => {
console.log('Uncaught error:', error);
});
// Remove listeners
const unsubscribe = inspector.on('console:log', handler);
unsubscribe(); // or inspector.off('console:log', handler);
import { MyPlugin } from './my-plugin';
inspector.use(new MyPlugin());
import { BasePlugin } from '@oxog/devinspector';
export class MyPlugin extends BasePlugin {
name = 'my-plugin';
version = '1.0.0';
description = 'My custom plugin';
async onInstall() {
// Setup plugin
this.events.on('network:request', this.handleRequest.bind(this));
}
onUninstall() {
// Cleanup
}
handleRequest(request) {
console.log('Plugin handling request:', request);
}
}
import { useEffect } from 'react';
import DevInspector from '@oxog/devinspector';
function App() {
useEffect(() => {
const inspector = new DevInspector();
return () => inspector.destroy();
}, []);
return <div>Your App</div>;
}
import DevInspector from '@oxog/devinspector';
export default {
mounted() {
this.inspector = new DevInspector();
},
beforeDestroy() {
this.inspector.destroy();
}
}
import { Component, OnInit, OnDestroy } from '@angular/core';
import DevInspector from '@oxog/devinspector';
@Component({...})
export class AppComponent implements OnInit, OnDestroy {
private inspector: DevInspector;
ngOnInit() {
this.inspector = new DevInspector();
}
ngOnDestroy() {
this.inspector.destroy();
}
}
Contributions are welcome! Please read our Contributing Guide for details.
MIT © Ersin Koc
[1.2.0] - 2025-07-01
FAQs
Professional developer inspector tool for real-time debugging of web applications
The npm package @oxog/devinspector receives a total of 1 weekly downloads. As such, @oxog/devinspector popularity was classified as not popular.
We found that @oxog/devinspector 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.
Research
/Security News
npm author Qix’s account was compromised, with malicious versions of popular packages like chalk-template, color-convert, and strip-ansi published.
Research
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.