1 Star 1 Fork 0

测试应用/测试仓库

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
07_模块化开发.html 1.07 KB
一键复制 编辑 原始数据 按行查看 历史
culvert 提交于 2022-10-17 12:34 . 课件
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="renderer" content="webkit" />
<meta http-equiv="Cache-Control" content="no-transform" />
<meta name="google" content="notranslate" />
<meta name="format-detection" content="telephone=no,email=no" />
<title>Document</title>
<meta name="keywords" content="">
<meta name="description" content="">
</head>
<body>
<script>
/**
* 模块化开发
* - nodejs - CommonJS
* - exports 导出值只能是对象
* - module.exports 导出的可以是任意值
* - exports 与 module.exports 产生冲突时,以 module.exports 为准
* - require 导入
* - es6 Module - ESM
* - export 模块导出
* - export default 默认导出
* - import 模块导入
* - node 项目默认是以 CommonJS 模块化,可以修改 package.json 切换模式
* - 添加一行属性 "type": "module"
*/
</script>
</body>
</html>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/test-application/test-warehouse.git
git@gitee.com:test-application/test-warehouse.git
test-application
test-warehouse
测试仓库
master

搜索帮助