Node.js 中的
Node.js 中的模組 是一個可重複使用的程式碼區塊,它封裝了相關功能,並且可以在應用程式的其他文件或部分中匯出和匯入。模組是 Node.js 應用程式的構建塊,可實現更好的組織、程式碼可重複使用性和可維護性。
const fs = require('fs'); // Using the 'fs' core module
本地模組:
第三方模組:
const express = require('express'); // Using a third-party module
exports.myDateTime = function () { return new Date().toLocaleString(); };
const dt = require('./myfirstModule'); console.log('The current date and time is: ' + dt.myDateTime());
以上是Node.js 中的模組是什麼?的詳細內容。更多資訊請關注PHP中文網其他相關文章!