node js 基礎 建立模組

2021-07-11 04:29:33 字數 657 閱讀 1035

1. 在你的乙個模組檔案module.js中 寫入:

exports

.world

=function

()

2. 然後在你的main.js 檔案中呼叫這個模組

require("./module"); /*表示呼叫當前資料夾下的module檔案*/

如果只是想封裝乙個物件作為公共介面。 

function

hello();

this

.sayhello

=function();

};module

.exports

=hello

;

然後main.js 便可以訪問了

varhello

=require

('./hello'

);hello

=new

hello

();hello

.setname

('byvoid'

);hello

.sayhello

();

Orchard 建立模組

2種方法 第一種 執行orchard程式,登入到後台管理頁面 單擊左邊選單的modules 在filter輸入框中輸入code 啟用code generation 在目錄orchard.source.1.7.2 src orchard.web bin下雙擊orchard.exe 彈出的cmd視窗,顯...

建立模組專案包

1 為支撐模組中的基礎模組建立專案包 2 為支撐模組中的許可權模組建立專案包 3 為支撐模組中的系統模組建立專案包 4 為應用模組建立專案包 第一步 建立基礎模組專案包com.common.platform.base 第二步 建立許可權模組專案包com.common.platform.auth 第三...

nodejs基礎學習 模組安裝

第三章 nodejs modular安裝 挺頭疼的。好像是我搞錯了,只是後端的nodejs,沒有angularjs。modular安裝命令 npm install g g 全域性安裝,可使modular在命令視窗中執行。存放位置為 usr local 全域性安裝原理,通過在 usr local bi...