본문 바로가기

NativeScript

(4)
(node:9468) [DEP0148] DeprecationWarning: Use of deprecated folder mapping "./" in the "exports" field module resolution of the package "C:\workSpace\프로젝트\node_modules\vuex\package.json" 의 "exports" 부분 수정. "./": "./" -> "./*": "./"
NativeScript 프로젝트 생성 1. nativescript 설치 npm install -g nativescript 2. nativescript 프로젝트 생성 tns create App이름 3. 해당 프로젝트로 이동 cd vue-test 4. nativescript-vue plugin 설치 npm install --save nativescript-vue 5. app.js 파일의 코드내용 아래로 변경 const Vue = require('nativescript-vue/dist/index'); new Vue({ template: ` `, }).$start(); - NativeScript-vue 모듈을 가져옴. - start() 함. 6. 에뮬레이터또는 기기로 앱 실행 tns run ios | android --emulator https:/..
Executing webpack failed with exit code 9. vscode cli에서 "tns run android --emulator" 실행시 발생함. 에러 메세지: Searching for devices... Preparing project... C:\Program Files\nodejs\node.exe: bad option: --config=C:\workSpace\pet-buddy-project\pet-buddy\webpack.config.js C:\Program Files\nodejs\node.exe: bad option: --env.hmr C:\Program Files\nodejs\node.exe: bad option: --env.externals=~/package.json C:\Program Files\nodejs\node.exe: bad option: ..
nativeScript 설치 1. cmd 관리자권한 > chocolatey 설치(윈도우용) @powershell -NoProfile -ExecutionPolicy unrestricted -Command "iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))" && SET PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin 2. node.js LTS 설치 choco install nodejs-lts -y 3. 크롬설치 choco install googlechrome -y 4. NativeScript관련 4-1. vue cli 설치 npm install -g @vue/cli @vue/cli-init 4-2. ..