本文參考學習了廖雪峯的大做 模塊node
可是廖的文章只模塊只有一個函數,在此演示一個模塊中有兩個函數,在另一個函數中是如何去調用的函數
//hello.js包中的內容
'use strict'; var s='hello baby'; function greet(name){ console.log(s+','+name+'!'); } function call(name){ console.log('喂,你好'+','+name+'!'); } //下面爲關鍵 module.exports={ greet:greet, call:call };
下面爲調用hello.js的另一個包main.js中的代碼學習
'use strict'; var greet=require('./hello').greet; var phonecall=require('./hello').call; var s='I m man,your man'; greet(s); phonecall(s);
執行node 顯示以下:ui
看到兩個在廖雪峯網址中的關於exports 和module.ports的不錯的留言 粘貼以下:spa
留言1----------------------------------------------------------------------------------------------------------------------code
留言2----------------------------------------------------------------------------------------------------------------------blog