![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.
@unic/composite-logger
Advanced tools
Lightweight logger composite to help you debug your modules and disable when you go to production
Lightweight logger composite to help you debug your modules and disable when you go to production
$ npm install @unic/composite-logger
// ES6 Module
import logger from '@unic/composite-logger';
// CommomJS
const logger = require('@unic/composite-logger').default;
Creation
// Creation of object
const obj = logger('MyPrefix'); // Exposes .log() method
// Logging stuff
window.localStorage.debug = true; // If this is falsy, nothing will be logged to the console
obj.log('Hello', 'World'); // Outputs 'MyPrefix → Hello World' to the console
Create an object with a log method.
Returns: Object
- Returns an object with exposed .log() method
Param | Type | Default | Description |
---|---|---|---|
[prefix] | String | If given, provides a prefix for the logged content from the log method |
Example
// Basic form
const obj = logger('MyModule');
// No prefix
const obj = logger();
// Composition
const obj = Object.assign({}, object1, object2, logger('MyModule'));
Log function params to console (including given prefix from creation).
Info: window.localStorage.debug must be truthy to see output in the console
Returns: undefined
Param | Type | Default | Description |
---|---|---|---|
[params...] | Any | Pass any number of arguments you want to log to the console |
Example
// Creation
const obj = logger('MyModule');
window.localStorage.debug = true; // Enable logging to the console
obj.log('Hello', 'World', '!'); // Outputs 'MyModule → Hello World !' to the console
obj.log(1, 2, 3, 4); // Outputs 'MyModule → 1 2 3 4' to the console
A composite is a function or an object which can be used as is or to merged with another object. These composites are normally used in the factory/composition pattern.
Helpful Ressources:
Apache-2.0
FAQs
Lightweight logger composite to help you debug your modules and disable when you go to production
We found that @unic/composite-logger demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 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.