NodeJS自定義模組

2022-07-17 05:33:09 字數 333 閱讀 8051

//1.建立測試模組js檔案(我這裡命名為test.js)

//2.新增測試方法

function test(){

console.log('test success!');

//3.公開該方法到node模組

這個是public的方法名,外部呼叫的時候,使用這個方法名)

exports.test = test;

//4.測試(在另乙個js檔案中引入這個模組,並呼叫對應測試函式,兩個js檔案在同一目錄下)

const testmodule = require('./test.js');

testmodule.test();

nodejs 自定義模組

1 npm nodejs package manager nodejs包管理器 npm install 安裝模組 npm uninstall 解除安裝模組 npm init 初始化 npm publish 發布自定義模組到npm官網 不過,大牛才用的上吧 o o,繼續努力吧!npm force un...

NodeJS自定義模組

1.建立測試模組js檔案 我這裡命名為test.js 2.新增測試方法 function test console.log test success 3.公開該方法到node模組 這個是public的方法名,外部呼叫的時候,使用這個方法名 exports.test test 4.測試 在另乙個js檔...

nodejs自定義模組查詢規則

node使用require識別符號進行模組查詢的優先順序 核心模組,如 http fs path 等。以 或 開始的相對路徑模組。以 開始的絕對路徑檔案模組。非路徑形式的檔案模組,如自定義的connect模組。核心模組 核心模組的優先順序僅僅次於快取載入,它在node的源 中已經編譯成二進位制 故其...