본문 바로가기

분류 전체보기138

[Svelte 앱 S3, CloudFront에 배포하기] 1. Svelte 앱 띄워보기 1. 먼저 svelte 프로젝트를 생성합니다. $ npx degit sveltejs/template my-project npx: 1개의 패키지를 1.99초만에 설치했습니다. > cloned sveltejs/template#HEAD to my-project $ ls my-project 2. svelte template을 클론해오면 아래와 같은 프로젝트 구조가 만들어집니다. 3. npm install을 해줍니다. $ npm install 4. 앱을 실행시킵니다. $ npm run dev ... ... Your application is ready~! 🚀 - Local: http://localhost:5000 - Network: Add `--host` to expose ────────────────── LOG.. 2021. 8. 23.
[ES6, ES2020] 유용한 자바스크립트 최신 문법 🔷Nullish coalescing operator leftExper ?? rightExpr leftExper가 null or undefined인 경우에 rightExpr를 실행한다 //Bad Code💩 function printMessage(text){ let message = text; if(text == null || text == undefined){ message = 'Nothing to display'; } console.log(message); } //Good code🌈 function printMessage(text){ const message = text ?? 'Nothing to display'; console.log(message); } printMessa.. 2021. 8. 4.
[STS][eclipse] SpringBoot에 ansi콘솔로 인한 렉/ 콘솔 렉 STS에서 SpringBoot로 개발할 때 아래와 같이 ANSI 콘솔을 이용해 로그레벨 별로 색상을 넣어준다. 매우 편리하고 좋은 기능이지만 왠지모르게 자꾸 렉이 발생한다. STS 테마를 다크로 했을 때만 콘솔을 스크롤할 때 오류가 나는 것 같고 기본 테마를 이용하면 렉 없이 이용할 수 있는 듯. 하지만 나는 다크를 무적권 사용하고 싶다!!! 굳이 콘솔이 알록달록할 필요는 없는 것 같다 그땐 Boot Dashboard에서 프로젝트를 우클릭 -> Open Config -> 아래와같이 ANSI console output의 체크를 해제해준다 이제 콘솔 색상은 검은 배경에 흰색으로 통일되지만 다크테마로 렉 없이 사용할 수 있다 2021. 7. 30.
[svelte template clone][ 'degit@latest' ] 설치가 오류 코드 7로 실패했습니다 svelte template 프로젝트를 클론해오기 위해 npx degit sveltejs/template svelte-app 명령어를 입력했더니 아래와 같이 에러 메세지가 뜨면서 실패했다. $ npx degit sveltejs/template svelte-app Error: EEXIST: file already exists, mkdir 'C:\Users\xxx' TypeError: Cannot read property 'loaded' of undefined at exit (C:\nodejs\node_modules\npm\lib\utils\error-handler.js:97:27) at errorHandler (C:\nodejs\node_modules\npm\lib\utils\error-handler.js.. 2021. 7. 27.