250x250
Notice
Recent Posts
Recent Comments
- Today
- Total
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- MYSQL
- sequelize
- certbot
- AWS
- Find
- Express
- clipBehavior
- atlas
- async
- TypeScript
- single quote
- EC2
- css
- Nodejs
- JavaScript
- moment
- https
- findByIdAndDelete
- await
- mongodb
- RDS
- mongoose
- flutter
- Node.js
- jsonwebtoken
- til
- nginx
- wil
- TailwindCSS
- double quote
Link
Archives
반응형
목록FS (1)
기억 휘발 방지소
[Node.js] fs 모듈
fs모듈 fs는 Node.js에서 기본적으로 제공하는 모듈로 File System의 약자이다. 파일을 읽기, 쓰기 등의 작업을 할 수 있다. 파일 읽기 fs.readFile과 fs.readFileSync로 파일을 읽어올 수 있다. fs.readFileSync는 동기적으로 파일을 읽어오고 fs.readFile은 비동기적으로 파일을 읽어온다. fs.readFileSync readFileSync은 다음과 같은 형태로 사용한다. fs.readFileSync(path[, options]) 테스트할 파일을 하나 만들어보자. 파일명은 test.txt로 하고 내용은 Hello Node.js로 채웠다. // test.txt Hello Node.js const fs = require("fs"); let input = fs..
Web/Node.js
2021. 9. 6. 23:51
반응형