Node 中引入一個模塊的方法及其細節

前端工程化系列 Node進階系列 在 node 環境中,有兩個內置的全局變量無需引入即可直接使用,並且無處不見,它們構成了 nodejs 的模塊體系: module 與 require 。以下是一個簡單的示例 const fs = require('fs') const add = (x, y) => x + y module.exports = add 雖然它們在平常使用中僅僅是引入與導出模
相關文章
相關標籤/搜索