목록Tech./AngularJS (3)
EduTech & AI 인공지능 & IT관련 소식
ionic3 업데이트 ionic3 업데이트 방법입니다. Ionic CLI and CordovaTo create Ionic projects, you’ll need to install the latest version of the CLI and Cordova. Before you do that, you’ll need a recent version of Node.js. Download the installer for Node.js 6 or greater and then proceed to install the Ionic CLI and Cordova for native app development:$ npm install -g ionic cordova You may need to add “sudo” in fro..
Node.js Ionic의 개발 환경은 기본적으로 Node.js가 설치되어야 하며, Node.js는 공식 사이트에서 다운로드하여 시스템에 맞는 설치파일을 가지고 설치하면 된다. https://nodejs.org/en/download/
환경구축은 아래와 같이 진행하면됩니다. 1. npm install2. npm start3. package.json 만들기{ "name": "angular2-quickstart", "version": "1.0.0", "scripts": { "start": "tsc && concurrently \"npm run tsc:w\" \"npm run lite\" ", "lite": "lite-server", "postinstall": "typings install", "tsc": "tsc", "tsc:w": "tsc -w", "typings": "typings" }, "license": "ISC", "dependencies": { "@angular/common": "2.0.0-rc.1", "@angular/comp..