일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- IntelliJ
- tomcat
- Kotlin
- Android
- vaadin
- table
- hadoop
- SQL
- SPC
- JavaScript
- R
- SSL
- mybatis
- window
- 공정능력
- Java
- Python
- Sqoop
- mapreduce
- Eclipse
- Express
- plugin
- xPlatform
- 보조정렬
- MSSQL
- NPM
- GIT
- react
- Spring
- es6
- Today
- Total
목록IntelliJ (13)
DBILITY
nodejs를 18.13.0으로 업데이트 했다. react프로젝트를 생성하는데 다음과 같은 에러가 났다. 이전에도 비슷한게 있었다. "C:\Program Files\nodejs\npx.cmd" --yes create-react-app . You are running `create-react-app` 4.0.3, which is behind the latest release (5.0.1). We no longer support global installation of Create React App. Please remove any global installs with one of the following commands: - npm uninstall -g create-react-app - yarn glob..
plugin update하고 나서 뭔가 메시지가 나오는 것 같던데...plugin 하고 관계없이 갑자기 총천연색 변수들을 보고 있자니 눈알이 돌아간다ㅋㅋ 식곤증에 비몽사몽 설정을 뭔가 건들였던것 같은데... Semantic highlighting을 off하면 편안하게 볼 수 있다.나만 그런가.. 분명 설정을 변경했건만, ide를 다시 열면 원상태로 돌아가 있다...이상하다..
Setting의 Languages & Frameworks-> TypeScript -> Recompile on changes [그림1]처럼 선택하면 된다. 프로젝트 루트에 tsconfig.json을 만들고 다음과 같이 입력한다. { "compilerOptions": { "target": "ES5", "module": "CommonJS", "noImplicitAny": true, "strictNullChecks": true }, "files": ["0001.ts","0002.ts"] } files는 지정하지 않으면 전부 다 https://typescript-kr.github.io/pages/tsconfig.json.html TypeScript 한글 문서 TypeScript 한글 번역 문서입니다 typescr..
그냥 New Project에서create-react-app부분에 --template cra-template-pwa를 추가하고 생성하면 되더라. npm build해보니 asset-manifest.json도 있다. index.js안에 serviceWorkerRegistration.unregister();를 serviceWorkerRegistration.register();로 변경하고 build. 이제 react 초보 학습중이라 build후 배포하고 실행해 보진 못했다. import React from 'react'; import ReactDOM from 'react-dom'; import './index.css'; import App from './App'; import * as serviceWorkerRe..