Cross platform CLI alerts with colors. Works on macOS, Linux, and Windows. Alerts: success, error, warning, info, question, and log.
npm install node-alerts
``sh`
npm install node-alerts

`js
const alert = require('node-alerts');
// Provide the type, msg, and name options.
alert({type: success, msg: Everything finished!});
// Prints: ✔ SUCCESS Everything finished!
alert({type: success, msg: Everything finished!, name: DONE});
// Prints: ✔ DONE Everything finished!
alert({type: warning, msg: You didn't add something!});
// Prints: ⚠ WARNING You didn't add something!
alert({type: info, msg: Awais is awesome!});
// Prints: ℹ INFO Awais is awesome!
alert({type: error, msg: Something went wrong!});
// Prints: ✖ ERROR Something went wrong!
alert({type: question, msg: Are you sure?});
// Prints: ? QUESTION Are you sure?
alert({type: log, msg: 10:03 - Server is up and running!});`
// Prints: ⚙️ LOG 10:03 - Server is up and running!

#### ❯ options
Type: object{}
Default:
You can specify the options below.
##### ❯ type
Type: stringerror
Default:
##### ❯ msg
Type: stringYou forgot to define all options.
Default: (Error message)
##### ❯ name
Type: string''` (Empty string)
Default:
