UNPKG
gamlielmx-hello-world
Version:
latest (1.0.0)
1.0.0
Prueba de concepto de un modulo o libreria de Node
gamlielmx-hello-world
/
lib
/
module.js
9 lines
(8 loc)
•
168 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
exports
.
showHelloWorld
=
function
(
) {
console
.
log
(
'Inicializando componente'
);
setTimeout
(
function
(
) {
console
.
log
(
'Hola mundo!'
); },
1000
); };