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