UNPKG
@vuetronex/cli
Version:
latest (0.1.1)
0.1.1
0.1.0
0.0.3
0.0.2
0.0.1
Vuetronex CLI Utility
github.com/vuetronex/cli
@vuetronex/cli
/
lib
/
helpers
/
displayGetStarted.js
8 lines
(7 loc)
•
261 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
const
chalk =
require
(
'chalk'
);
module
.
exports
=
function
(
name
) {
console
.
log
(chalk.
yellow
(
'Get Started:'
));
console
.
log
(chalk.
blue
(
' cd '
+ name));
console
.
log
(chalk.
blue
(
' npm start'
));
console
.
log
(chalk.
green
(
'\nHappy Coding...\n'
)); }