返回

CommonJS_Node模块化

发布时间:2022-11-09 17:54:18 277
# node.js# npm# node.js# json# 工具
  1. 下载安装node.js
  2. 创建项目结构
|-modules
|-module1.js
|-module2.js
|-module3.js
|-app.js
|-package.json
{
"name": "commonJS-node",
"version": "1.0.0"
}
  1. 下载第三方模块
  • npm install uniq --save
  1. 模块化编码
  • module1.js
module.exports = {
foo() {
console.log('moudle1 foo()')
}
}
  • module2.js
module.exports = function () {
console.log('module2()')
}
  • module3.js
exports.foo = function () {
console.log('module3 foo()')
}

exports.bar = function () {
console.log('module3 bar()')
}
  • app.js
/**
1. 定义暴露模块:
module.exports = value;
exports.xxx = value;
2. 引入模块:
var module = require(模块名或模块路径);
*/
"use strict";
//引用模块
let module1 = require('./modules/module1')
let module2 = require('./modules/module2')
let module3 = require('./modules/module3')

let uniq = require('uniq')
let fs = require('fs')

//使用模块
module1.foo()
module2()
module3.foo()
module3.bar()

console.log(uniq([1, 3, 1, 4, 3]))

fs.readFile('app.js', function (error, data) {
console.log(data.toString())
})
  1. 通过node运行app.js
  • 命令: node app.js
  • 工具: 右键–>运行

 

特别声明:以上内容(图片及文字)均为互联网收集或者用户上传发布,本站仅提供信息存储服务!如有侵权或有涉及法律问题请联系我们。
举报
评论区(0)
按点赞数排序
用户头像
精选文章
thumb 中国研究员首次曝光美国国安局顶级后门—“方程式组织”
thumb 俄乌线上战争,网络攻击弥漫着数字硝烟
thumb 从网络安全角度了解俄罗斯入侵乌克兰的相关事件时间线
下一篇
ES6-Babel-Browserify模块化 2022-11-09 17:14:58