ES6 모듈 / COMMONJS
ES6 모듈
1) 브라우저에서
<script src="1.js" type="modules"></script>
type에 modules를 추가하면 1.js파일에서의
import export가 가능하다.
2) Node.js에서
package.json
"name": "6-express",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type" : "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon app"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"express": "^4.17.1"
},
"devDependencies": {
"nodemon": "^2.0.12"
}
}
"type" : "module"을 추가시켜 import export가 가능하게 한다.
ex)
import express from "express"
CommonJS
"package.json"의 "type" : "module"을 제거하고 require를 통해서 처리해야한다.
ex)
const express = require('express');
Author And Source
이 문제에 관하여(ES6 모듈 / COMMONJS), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@khw970421/ES6-모듈-COMMONJS저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)