일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- xargs
- Windows 10
- VirtualBox
- ssh
- plugin
- Quartz
- netsh
- resource
- 단축키
- lsof
- context
- bash
- Eclipse
- IntelliJ
- port
- grep
- find
- vscode
- import
- tomcat
- web.xml
- JavaScript
- GIT
- profile
- 줄바꿈 문자
- maVen
- Windows
- 네트워크
- Mac
- Source
- Today
- Total
목록전체 글 (1749)
develog
# SID 로 접속 (:orcl)sqlplus username/password@127.0.0.1:1521:orcl# Service Name 으로 접속 (/orcl)sqlplus username/password@127.0.0.1:1521/orcl
// FIND_TXT2 가 있는 모든 라인 중 FIND_TXT1 가 포함된 라인은 제외한다// (?
vscode 에 Prettier 플러그인을 설치한다prettier 패키지 설치npm install prettier --save-dev --save-exactyarn add prettier --dev --exact.prettierrc 설정 파일// .prettierrc{ "singleQuote": true, "trailingComma": "es5", "useTabs": false, "tabWidth": 2, "semi": true, "bracketSpacing": true, "arrowParens": "always", "printWidth": 80}파일 포멧팅하기# 모든 파일 포멧팅npx prettier . --write# index.js 파일 포멧팅npx pre..
// Node.js 에서 전통적으로 사용되는 방식const fs = require('fs').promises;// 최신 Node.js 환경에서 권장되는 방식const fs = require('fs/promises');
CommonJS 모듈로 지정// .js 파일이 CommonJS 모듈로 취급된다 { "type": "commonjs" // 디폴트 값 } // module.pxports, require 사용 ECMAScript 모듈로 지정// .js 파일이 ECMSScript 모듈로 취급된다 { "type": "module" } // export, import 사용