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
- find
- bash
- Quartz
- 단축키
- grep
- 네트워크
- profile
- import
- tomcat
- plugin
- JavaScript
- port
- Mac
- 줄바꿈 문자
- ssh
- context
- Windows 10
- resource
- Eclipse
- maVen
- VirtualBox
- xargs
- GIT
- Windows
- web.xml
- vscode
- Source
- lsof
- IntelliJ
- netsh
Archives
- Today
- Total
목록2024/10 (36)
develog
[node] require fs promise
// Node.js 에서 전통적으로 사용되는 방식const fs = require('fs').promises;// 최신 Node.js 환경에서 권장되는 방식const fs = require('fs/promises');
카테고리 없음
2024. 10. 31. 06:48
[node] 모듈 type 지정하기
CommonJS 모듈로 지정// .js 파일이 CommonJS 모듈로 취급된다 { "type": "commonjs" // 디폴트 값 } // module.pxports, require 사용 ECMAScript 모듈로 지정// .js 파일이 ECMSScript 모듈로 취급된다 { "type": "module" } // export, import 사용
카테고리 없음
2024. 10. 30. 18:36
[node] 백엔드 기술 스택 종류
1. Express + Sequelize 2. NestJS + TypeORM 3. Next.js + Prisma 4. Fastify + Objection.js 5. Hapi.js + Mongoose (MongoDB) 6. Koa.js + Knex.js
카테고리 없음
2024. 10. 25. 18:28