Advertisement
Guest User

Untitled

a guest
Sep 21st, 2019
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.43 KB | None | 0 0
  1. $npm install -g vue-cli # 주석, Vue CLI 관련된 부분을 설치합니다.
  2. $cd /Users/<User Name>/ # 주석, 적당한 위치에서 시작하시면 됩니다.
  3. $mkdir -pv workspace/vue_example && cdworkspace/vue_example
  4. $npm init
  5. This utility will walk you through creating a package.json file.
  6. It only covers the most common items, and tries to guess sensible defaults.
  7. See `npm help json`fordefinitive documentation on these fields
  8. and exactly what they do.
  9. Use `npm install <pkg>`afterwards to install a package and
  10. save it as a dependency inthe package.json file.
  11. Press ^C at any time to quit.
  12. package name: (vue_example) #주석, 엔터 누르시면 됩니다.
  13. version: (1.0.0) #주석, 엔터 누르시면 됩니다.
  14. description: #주석, 엔터 누르시면 됩니다.
  15. entry point: (index.js) #주석, 엔터 누르시면 됩니다.
  16. test command: #주석, 엔터 누르시면 됩니다.
  17. gitrepository: #주석, 엔터 누르시면 됩니다.
  18. keywords: #주석, 엔터 누르시면 됩니다.
  19. author: #주석, 엔터 누르시면 됩니다.
  20. license: (ISC) #주석, 엔터 누르시면 됩니다.
  21. About to writeto /Users/cats-soft/Downloads/workspace/vue_example/package.json:
  22. {
  23. "name": "vue_example",
  24. "version": "1.0.0",
  25. "description": "",
  26. "main": "index.js",
  27. "scripts": {
  28. "test": "echo \"Error: no test specified\" && exit 1"
  29. },
  30. "author": "",
  31. "license": "ISC"
  32. }
  33. Is this OK? (yes) yes
  34.  
  35. $npm install vuejs bootstrapk
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement