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
- ssh
- bash
- port
- import
- tomcat
- resource
- JavaScript
- VirtualBox
- 단축키
- Windows
- profile
- Mac
- GIT
- lsof
- context
- Source
- Quartz
- find
- maVen
- netsh
- 네트워크
- Windows 10
- IntelliJ
- vscode
- plugin
- web.xml
- grep
- Eclipse
- xargs
- 줄바꿈 문자
Archives
- Today
- Total
develog
[node] require fs promise 본문
// Node.js 에서 전통적으로 사용되는 방식
const fs = require('fs').promises;
// 최신 Node.js 환경에서 권장되는 방식
const fs = require('fs/promises');
Comments