일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- table
- mapreduce
- tomcat
- 공정능력
- NPM
- SPC
- Spring
- JavaScript
- mybatis
- plugin
- Python
- Java
- xPlatform
- IntelliJ
- R
- vaadin
- react
- GIT
- Kotlin
- es6
- 보조정렬
- Sqoop
- hadoop
- Android
- MSSQL
- SQL
- Eclipse
- SSL
- Express
- window
- Today
- Total
목록front-end & ui/npm (6)
DBILITY
머리에 기록이 안되니, 정리하는 것도 고생이다. 자본주의 천민의 고달픈 삶~ npm은 node package manager다. nodejs는 chrome V8 javascript engine으로 build된 javascript runtime, 실행환경이다. webpack은 javascript module bundler로, html/css/javascript/image/font 등을 하나 또는 여러개로 병합/압축한다. 4.0.0이후로는 설정 파일을 필요로 하지는 않다고 한다. 그러나, 원하는 설정이 있으면 당연히 할 수 있다. webpack.config.js에 기록한다. 당장 필요한 주요 항목은 entry,module,output, [ mode,devtool,resolve ] 등으로 entry는 말 그대로..
listup을 해보니 중간에 왠 extraneous. 내용은 다음과 같다. PS C:\Dev64\workspace\react001> npm list react001@0.1.0 C:\Dev64\workspace\react001 +-- @emotion/css@11.7.1 +-- @emotion/react@11.7.1 +-- @react-icons/all-files@4.1.0 +-- @testing-library/jest-dom@5.16.1 +-- @testing-library/react@12.1.2 +-- @testing-library/user-event@13.5.0 +-- bootstrap@4.6.0 +-- moment@2.29.1 +-- nan@2.15.0 extraneous +-- react-boots..
자세한 것은 공식사이트 참고하자. PS C:\Dev64\workspace> npm install -g npm-check-updates PS C:\Dev64\workspace> ncu -u #특정버전으로 PS C:\Dev64\workspace> npm install -g create-react-app@^v5.0.0
nodemon은 서버 개발 시 재시작을 자동으로 처리해 준다. 설치후 실행하니 다음과 같은 오류는 권한문제라고 한다. PS C:\Dev64\workspace\app> nodemon server.js nodemon : 이 시스템에서 스크립트를 실행할 수 없으므로 C:\Dev64\workspace\app\node_modules\.bin\nodemon.ps1 파일을 로드할 수 없습니다. 자세한 내용은 about_Execution_Policies(https://go.microsoft.com/fwlink/ ?LinkID=135170)를 참조하십시오. + nodemon server.js + ~~~~~~~ + CategoryInfo : 보안 오류: (:) [], PSSecurityException + FullyQua..
무언가를 하다 intellij를 종료하였던지 여하튼 npm start하니 다음과 같이 동일포트를 사용 중이라 나온다. ? Something is already running on port 3000. Would you like to run the app on another port instead? » (Y/n) node가 죽지 않은 모양이다. 또는 다른 프로세스가 있을 수도. PS C:\Dev64\workspace\blog> ps -name node Handles NPM(K) PM(K) WS(K) CPU(s) Id SI ProcessName ------- ------ ----- ----- ------ -- -- ----------- 147 60 99916 109824 3.77 4768 1 node PS C..