![Create React App Officially Deprecated Amid React 19 Compatibility Issues](https://cdn.sanity.io/images/cgdhsj6q/production/04fa08cf844d798abc0e1a6391c129363cc7e2ab-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
@jodacame/node-logger
Advanced tools
A lightweight and flexible logger for Node.js applications. Designed to simplify logging with support for different log levels, including info
, error
, warn
, and debug
. With node-logger
, you can log directly to stdout, track progress with a progress bar, and include additional context as needed. Whether you're building a small project or a larger application, node-logger
provides the essential tools for effective logging.
npm install @jodacame/node-logger
const logger = require('@jodacame/node-logger');
or
import logger from '@jodacame/node-logger';
logger.info('Hello world');
logger.error('Hello world');
logger.warn('Hello world');
logger.debug('Hello world');
logger.info('Hello world', { key: 'value' });
logger.error('Hello world', { key: 'value' });
logger.warn('Hello world', { key: 'value' });
logger.debug('Hello world', { key: 'value' });
Allow to log to stdout
const logger = require('@jodacame/node-logger');
or
import logger from '@jodacame/node-logger';
logger.stdout.info('Hello world');
logger.stdout.error('Hello world');
logger.stdout.warn('Hello world');
logger.stdout.debug('Hello world');
logger.stdout.info('Hello world', { key: 'value' });
logger.stdout.error('Hello world', { key: 'value' });
logger.stdout.warn('Hello world', { key: 'value' });
logger.stdout.debug('Hello world', { key: 'value' });
Display progress bar
const logger = require('@jodacame/node-logger');
or
import logger from '@jodacame/node-logger';
logger.progress(value, [total], [barLength], [message]);
// Example:
logger.progress(50, 100, 100, 'Progress bar');
logger.progress(70);
FAQs
A simple logger for Node.js
The npm package @jodacame/node-logger receives a total of 24 weekly downloads. As such, @jodacame/node-logger popularity was classified as not popular.
We found that @jodacame/node-logger demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.