UNPKG
mern-backend-quickstart
Version:
latest (1.0.2)
1.0.2
1.0.1
1.0.0
CLI tool to quickly generate a MERN backend boilerplate with optional auth middleware.
mern-backend-quickstart
/
cli
/
colors.js
9 lines
(7 loc)
•
289 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
import
chalk
from
'chalk'
;
export
const
success = chalk.
green
.
bold
;
export
const
error = chalk.
red
.
bold
;
export
const
info = chalk.
blueBright
;
export
const
warning = chalk.
yellowBright
;
export
const
headline = chalk.
magentaBright
.
bold
.
underline
;
export
const
subtle = chalk.
gray
;