1.0.2 • Published 3 years ago
sandeeplogpackage v1.0.2
Log Package
This package is used to print colorful text in console.
Installation
npm i sandeeplogpackageUsage
In Code
import LogPackage from 'sandeeplogpackage';
const testFunction = () => {
LogPackage.success("This is success")
LogPackage.danger("This is danger")
LogPackage.info("This is info")
}In Console
This is success (in green color)This is danger (in red color)This is info (in yellow color)