node js 模組分類

2022-05-03 22:45:31 字數 597 閱讀 2880

核心模組 require('fs'); 

核心模組是被編譯成二進位制**

檔案模組 require('../fs.js');

對於載入模組時既沒指出./ ../ /.../時,載入模組的搜尋路徑。如果'/home/ry/projects/foo.js'中的檔案呼叫了 require('bar.js') ,node將在下面的位置進行搜尋:

•/home/ry/projects/node_modules/bar.js

•/home/ry/node_modules/bar.js

•/home/node_modules/bar.js

•/node_modules/bar.js

資料夾模組 require('../fs');

如果在這個目錄下沒有package.json檔案,node將試圖從這個目錄下載入index.js或index.node檔案。例如,如果上面沒有package.json檔案,那麼require('./some-library')時,將試圖載入下面的檔案:
•./some-library/fs.js

•./some-library/fs.node

nodejs模組 http模組

處理url請求 var fs require fs 主頁function home res res.write content res.end about.html 關於頁面 function about res res.write content res.end 匯出頁面處理函式 exports....

nodejs 模組系統

模組系統分為原生系統跟檔案系統,他們的呼叫優先順序為 檔案系統快取區 原生系統 原生系統快取區 檔案系統 1.原生系統 http,path,fs 等 2.載入檔案系統時還可以指定自定義檔案 hello 或者 root node hello 路徑載入 3.mod 非原生系統的檔案系統 node.js ...

nodejs發布模組

nodejs安裝目錄 d soft nodejs 新建js檔案 例如 helloworld.js console.log hello world 1.建立乙個新的模組 d soft nodejs npm init生成乙個新的package.json 註冊所繫結的賬號 npm adduser 3.上傳...