Skip to content

Instantly share code, notes, and snippets.

@kiramishima
Created September 16, 2017 22:03
Show Gist options
  • Save kiramishima/cac24812f313c40246824cb5b8e3633f to your computer and use it in GitHub Desktop.
Save kiramishima/cac24812f313c40246824cb5b8e3633f to your computer and use it in GitHub Desktop.
Ejemplo uso de modulo javascript (usaremos sample_module.js)
var obj = require('./sample_module.js');
/*Invoke CallFun function Of main.js*/
obj.Method1();
console.log("Hello! Nodejs");
// Output:
// Invoke call Function
// Hello! Nodejs
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment