Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- JavaScript
- find
- Quartz
- Source
- netsh
- grep
- plugin
- vscode
- resource
- 단축키
- Windows 10
- lsof
- maVen
- Windows
- VirtualBox
- import
- 줄바꿈 문자
- Eclipse
- 네트워크
- tomcat
- profile
- Mac
- context
- web.xml
- ssh
- IntelliJ
- port
- bash
- xargs
- GIT
Archives
- Today
- Total
develog
[node] 모듈 type 지정하기 본문
CommonJS 모듈로 지정
// .js 파일이 CommonJS 모듈로 취급된다
{
"type": "commonjs" // 디폴트 값
}
// module.pxports, require 사용
ECMAScript 모듈로 지정
// .js 파일이 ECMSScript 모듈로 취급된다
{
"type": "module"
}
// export, import 사용
Comments