@qnx/log
v0.8.8
Published
Collection of utilities of console log
Maintainers
Readme
@qnx/log
@qnx/log provides a console logger using the Chalk library for colorful output. It supports different message types — info, error, success, and warning — each rendered in a distinct color.
🤖 MCP Server:
https://qnx-mcp-server.vercel.app/mcp/log
✨ Features
- 🎨 Colorized console output via Chalk
- 📢 Four built-in message types:
info,error,success,warning - 🛠️ Simple, minimal API
📦 Installation
# npm
npm install @qnx/log
# yarn
yarn add @qnx/log
# pnpm
pnpm install @qnx/logPeer Dependencies
npm install chalk🚀 Usage
import { consoleLog } from '@qnx/log'
consoleLog('Server started', { type: 'info' })
consoleLog('An error occurred!', { type: 'error' })
consoleLog('Operation successful', { type: 'success' })
consoleLog('Proceed with caution', { type: 'warning' })The type option defaults to 'info' if omitted:
consoleLog('This is an informational message')🤖 MCP Server
AI tools for this package are available via the QNX MCP Server.
Endpoint: https://qnx-mcp-server.vercel.app/mcp/log
| Tool | Description |
| ---- | ----------- |
| get-console-log-docs | Documentation for usage, message types, and patterns |
| build-console-log | Preview console output and get the consoleLog() call |
Supported clients: Claude Desktop · Claude Code · Cursor · Windsurf · Cline · Continue.dev · Codex CLI · ChatGPT Desktop
HTTP (Streamable HTTP)
{
"mcpServers": {
"qnx-log": {
"url": "https://qnx-mcp-server.vercel.app/mcp/log"
}
}
}stdio (via npx)
{
"mcpServers": {
"qnx-log": {
"command": "npx",
"args": ["-y", "@qnx/mcp", "log"]
}
}
}🤝 Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change. Please make sure to update tests as appropriate.
📄 License
MIT License © 2023-PRESENT Yatendra Kushwaha
