Skip to content

Instantly share code, notes, and snippets.

@L-Soft
Last active September 18, 2019 10:04
Show Gist options
  • Save L-Soft/bc0a440d51b202ea57a47a23f0483a24 to your computer and use it in GitHub Desktop.
Save L-Soft/bc0a440d51b202ea57a47a23f0483a24 to your computer and use it in GitHub Desktop.
$npm install -g vue-cli # 주석, Vue CLI 관련된 부분을 설치합니다.
$cd /Users/<User Name>/ # 주석, 적당한 위치에서 시작하시면 됩니다.
$mkdir -pv workspace/vue_example && cdworkspace/vue_example
$npm init
This utility will walk you through creating a package.json file.
It only covers the most common items, and tries to guess sensible defaults.
See `npm help json`fordefinitive documentation on these fields
and exactly what they do.
Use `npm install <pkg>`afterwards to install a package and
save it as a dependency inthe package.json file.
Press ^C at any time to quit.
package name: (vue_example) #주석, 엔터 누르시면 됩니다.
version: (1.0.0) #주석, 엔터 누르시면 됩니다.
description: #주석, 엔터 누르시면 됩니다.
entry point: (index.js) #주석, 엔터 누르시면 됩니다.
test command: #주석, 엔터 누르시면 됩니다.
gitrepository: #주석, 엔터 누르시면 됩니다.
keywords: #주석, 엔터 누르시면 됩니다.
author: #주석, 엔터 누르시면 됩니다.
license: (ISC) #주석, 엔터 누르시면 됩니다.
About to writeto /Users/cats-soft/Downloads/workspace/vue_example/package.json:
{
"name": "vue_example",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC"
}
Is this OK? (yes) yes
$npm install vuejs bootstrapk
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment