UNPKG
eg-world
Version:
latest (1.0.1)
1.0.1
1.0.0
Prueba de concepto de un modulo o libreria de Node
eg-world
/
lib
/
module.js
6 lines
•
160 B
JavaScript
View Raw
1
2
3
4
5
6
exports
.
showHelloWorld
=
function
(
){
console
.
log
(
"Inicializando componente"
);
setTimeout
(
function
(
){
console
.
log
(
"¡Hola mundo!"
); },
2000
); }