
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.
console-glow
Advanced tools
Stylish console logging with themes, emojis, and color — for developers who like their CLI with ✨ personality.
neon, hacker, retro, matrix, and moresuccess, error, warn, infoglow.theme('neon').log("Hello")npm install console-glow
# or
yarn add console-glow
# or
pnpm add console-glow
import { glow } from 'console-glow';
// Predefined log types with emojis
glow.success('Database connected!'); // ✅ green
glow.error('Invalid credentials!'); // ❌ red
glow.warn('Session expires soon!'); // ⚠️ yellow
glow.info('Server listening on port 3000'); // ℹ️ blue
// Themed logging (chainable API)
glow.theme('neon').log('System initialized!'); // 🌈 pink/purple
glow.theme('hacker').log('Access granted!'); // 💚 green matrix style
import { logger } from 'console-glow';
// 1. Configure logger
logger
.setTheme('matrix')
.setLevel('debug')
.enableFileLogging('./app.log');
// 2. Log with metadata
logger.debug('User action', {
userId: 123,
action: 'login',
timestamp: new Date()
});
// 3. Special formats
logger.asciiArt('WELCOME');
logger.boxed('Critical security update required!', 'ALERT');
// 4. Export logs
await logger.exportHistory('json'); // Also supports 'txt'
glow.theme('rainbow').asciiArt('MY API');
glow.info(`Starting in ${process.env.NODE_ENV} mode`);
glow.success(`Connected to ${dbConfig.host}`);
// Only show debug logs in development
if (process.env.NODE_ENV === 'development') {
logger.setLevel('debug');
}
try {
glow.theme('retro').log('Processing files...');
await processFiles();
glow.success(`Processed ${count} files!`);
} catch (err) {
glow.error('Failed:', err.message);
logger.debug('Stack trace:', { stack: err.stack });
process.exit(1);
}
glow.boxed('Welcome to the setup wizard!', '👋');
glow.warn('This will modify system files');
glow.theme('neon').log('Proceed? [Y/n]');
Enjoy stylish logging with console-glow ✨
FAQs
Stylish console logs with themes, emojis, and gradients.
We found that console-glow 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.