728x90 Express, Vue6 [node] pm2 설치 * pm2 패키지를 설치한다. npm install pm2 -g * pm2 start와 관련된 내용 pm2 start app.js pm2 start app.js --watch // 소스 수정 후 저장시 적용됨. pm2 start app.js --watch --no-daemon //백그라운드로 실행하지 않는다. pm2 start app.js --watch --ignore-watch="(파일경로)" --no-daemon //해당 파일 무시하여 해당 파일은 무시하고 수정시 서버 재기동이 되지 않는다. * pm2 모니터링 pm2 monit * pm2 리스트 확인 pm2 list * pm2 프로세스 종료 pm2 stop [App name] // pm2 list 에 보이는 appname 을 적으면 중지된다. pm2.. Express, Vue 2022. 3. 29. [centos7] npm install 시 (npm ERR! gyp ERR! find Python 오류 해결) npm ERR! gyp info it worked if it ends with ok npm ERR! gyp info using node-gyp@8.4.1 npm ERR! gyp info using node@16.14.2 | linux | x64 npm ERR! gyp ERR! find Python npm ERR! gyp ERR! find Python Python is not set from command line or npm configuration npm ERR! gyp ERR! find Python Python is not set from environment variable PYTHON npm ERR! gyp ERR! find Python checking if "python3" can be used.. Express, Vue 2022. 3. 28. [express] 로컬에서 express 생성 시 액세스 거부 오류 ============================================================================ Set-ExecutionPolicy : 레지스트리 키 'HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\PowerShell\1\ShellIds\Microsoft.PowerShell'에 대한 액세스가 거부되었습니다. 기본(LocalMachine) Scope에 대한 실행 정책을 변경하려면 "관리자 권한으로 실행" 옵션으로 Windows PowerShell을 시작하십시오. 현재 사용자에 대한 실행 정책 을 변경하려면 "Set-ExecutionPolicy -Scope CurrentUser"를 실행하십시오. 위치 줄:1 문자:1 + Set-ExecutionP.. Express, Vue 2022. 3. 22. [vue] express, vue3 설치 1. NODE 기반으로 되어 있는 프로젝트이기에 NODE를 설치한다.(v16, v17) $ npm install -g @vue/cli 2. 위 명령어로 vue를 내려받는다. $ vue -v 위 명령어로 vue 버전을 확인할 수 있다. 3. $ npm install express-generator -g 위 명령어로 express를 내려받는다. Express, Vue 2022. 3. 22. [vue] vue cli 프로젝트 설정 아래 코드는 터미널에서 프로젝트 init시 보여지는 절차를 그대로 표시한 내용이다. VUE 프로젝트 생성시 참고한다. > manually select features [*]Choose Vue version [*]Babel // js 최신 문법을 폴리필 해줘 구형 브라우저 동작하게 해주는 컴파일러 []TypeScript // 정적타입 언어 []Progressive Web App (PWA) Support [*]Router [*]Vuex // 상태 관리 라이브러리 [*]CSS Pre-processors // scss, less등 전처리 필요한 css 사용시 선택 [*]Linter / Formatter // ESLint, prettier등 사용시 선택 [*]Unit Testing // 단위테스도구 사용시 선택 .. Express, Vue 2022. 3. 17. [vue] Vue eslint 규칙 설정 Vue3 프로젝트를 생성하고 실행시키는 중 아래와 같은 에러를 발견하였다. You may use special comments to disable some warnings. Use // eslint-disable-next-line to ignore the next line. Use /* eslint-disable */ to ignore all warnings in a file. ERROR Error: Build failed with errors. 작업을 하다보면 Vue 규칙을 지키기 어렵다. npm install --save-dev eslint eslint-plugin-vue@next 위 명령어를 입력하여 eslint-plugin을 받은 뒤 프로젝트 내에 .eslintignore 파일과 .eslintrc.. Express, Vue 2022. 3. 17. 이전 1 다음 728x90