homebody's blog

[Vue] 1. npm, Vue 설치 및 Vue 프로젝트 생성 본문

Vue.js

[Vue] 1. npm, Vue 설치 및 Vue 프로젝트 생성

homebody 2019. 7. 30. 19:17

npm 설치

Vue 설치 및 프로젝트 생성

  • 터미널창을 열고 아래의 명령어를 입력한다.

    $ npm install vue
    $ npm install -g vue-cli
    $ vue init webpack projectName
    
    ? Project name projectName
    ? Project description A Vue.js project
    ? Author
    ? Vue build standalone
    ? Install vue-router? Yes
    ? Use ESLint to lint your code? Yes
    ? Pick an ESLint preset Standard
    ? Set up unit tests No
    ? Setup e2e tests with Nightwatch? Yes
    ? Should we run `npm install` for you after the project has been created? (recommended) npm
    
    $ npm run dev
  • 서버가 켜지게 된다.(http://localhost:8080/)

'Vue.js' 카테고리의 다른 글

[Vue] 3. Vue파일 Component로 넣기  (0) 2019.07.31
[Vue] 2. Hello world만 출력  (0) 2019.07.31
Comments