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