
Security News
Scaling Socket from Zero to 10,000+ Organizations
Socket CEO Feross Aboukhadijeh shares lessons from scaling a developer security startup to 10,000+ organizations in this founder interview.
An extension of the morgan express logger to output through the debug library.
Emorlog is an express middleware which composes the morgan logger middleware with the pino console output library for a consistent logging output with other library debug info.
npm install emorlog
morganDevtool(format,options);
format (string): The morgan format stringoptions (object): Optional options to pass through to morganimport express, { Request, Response } from 'express';
import { morganDevtool, log } from 'emorlog';
const app = express();
app.use(morganDevtool('dev'));
app.get('/', (req: Request, res: Response) => {
res.status(200).json({ message: 'Hello Emorlog' });
});
app.listen(5000, 'localhost', () => {
log.info(`Server listing at http://localhost:5000`);
});
example output

:datetz
The current date and time in UTC.
:methodColor
The HTTP method of the request.
:statusColor
The status code of the response.
FAQs
An extension of the morgan express logger to output through the debug library.
We found that emorlog demonstrated a not healthy version release cadence and project activity because the last version was released 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
Socket CEO Feross Aboukhadijeh shares lessons from scaling a developer security startup to 10,000+ organizations in this founder interview.

Research
Socket Threat Research maps a rare inside look at OtterCookie’s npm-Vercel-GitHub chain, adding 197 malicious packages and evidence of North Korean operators.

Research
Socket researchers identified a malicious Chrome extension that manipulates Raydium swaps to inject an undisclosed SOL transfer, quietly routing fees to an attacker wallet.