-
-
Notifications
You must be signed in to change notification settings - Fork 0
Home
Ankan Saha edited this page Jun 28, 2023
·
1 revision
npm install outers@latest --save # install the package
const outers = require('outers'); // import the package
outers.green('Hello World!'); // print a string to the console with green color
outers.red('Hello World!'); // print a string to the console with red color
outers.blue('Hello World!'); // print a string to the console with blue color
outers.yellow('Hello World!'); // print a string to the console with yellow color
outers.magenta('Hello World!'); // print a string to the console with magenta color
const { green, red, blue, yellow, magenta } = require('outers');
green('Hello World!'); // print a string to the console with green color
red('Hello World!'); // print a string to the console with red color
blue('Hello World!'); // print a string to the console with blue color
yellow('Hello World!'); // print a string to the console with yellow color
magenta('Hello World!'); // print a string to the console with magenta color
const { green, red, blue, yellow, magenta } = require('outers');
green('Hello', 'World!'); // print a string to the console with green color
red('Hello', 'World!'); // print a string to the console with red color
blue('Hello', 'World!'); // print a string to the console with blue color
yellow('Hello', 'World!'); // print a string to the console with yellow color
magenta('Hello', 'World!'); // print a string to the console with magenta color
MIT