colorfiy-library
v1.0.3
Published
A library for colorify your Log messages in console.
Downloads
6
Maintainers
Readme
colorify-library-for-console-log-messages
Installing colorify-library
With NPM:
$ npm install colorify-library
You can install Node.js easily with NVM or ASDF.
Colorify libray is a library for showing console log messages colorfully.
Use case ( Colorify using React component )
my colorify library for console messages with colors success danger info
import { Log } from "colorfiy-library";
function App() {
return (
<>
{Log.success("Showing my Log.success console Message.")}
{Log.danger("Showing my Log.danger console Message.")}
{Log.info("Showing my Log.info console Message.")}
</>
);
}