一直听闻vue.js,今天简单了解了以下,在windows下安装成功

下面不废话了,直接上图

这是效果

vue上路_github

首先下载去nodejs官网下载最新的nodejs

vue上路_chrome_02

以下载windows 64bit msi格式为例

vue上路_github_03

下载好之后,直接点击运行安装

vue上路_json_04

安装目录记住,因为后续配置环境变量会用到,强烈建议,安装任何文件时安装目录不要出现中文

下面是安装好的目录

vue上路_vue上路_05

然后 win+R 打开运行窗口,输入cmd进入dos终端

vue上路_vue上路_06

vue上路_vue.js_07

然后简述一下 vue 的几条 dos 下的命令

cnpm 淘宝官方镜像 http://registry.npm.taobao.org

npm config set registry http://registry.npm.taobao.org

npm install -g vue-cli

npm install -g --save --dev vue-cli

npm install -gD vue-cli


下面先设置
C:\WINDOWS\system32>npm config set registry http://registry.npm.taobao.org

然后安装全局开发这模式的vue-cli

C:\WINDOWS\system32>npm install -gD vue-cli
npm WARN deprecated vue-cli@2.9.6: This package has been deprecated in favour of @vue/clinpm WARN deprecated coffee-script@1.12.7: CoffeeScript on NPM has moved to "coffeescript" (no hyphen)
C:\Users\91852\AppData\Roaming\npm\vue-list -> C:\Users\91852\AppData\Roaming\npm\node_modules\vue-cli\bin\vue-list
C:\Users\91852\AppData\Roaming\npm\vue -> C:\Users\91852\AppData\Roaming\npm\node_modules\vue-cli\bin\vue
C:\Users\91852\AppData\Roaming\npm\vue-init -> C:\Users\91852\AppData\Roaming\npm\node_modules\vue-cli\bin\vue-init
+ vue-cli@2.9.6
added 241 packages from 206 contributors in 108.896s

下面初始化一下

C:\WINDOWS\system32>npm init -f
npm WARN using --force I sure hope you know what you are doing.
Wrote to C:\WINDOWS\system32\package.json:

{
  "name": "system32",
  "version": "1.0.0",
  "description": "",
  "main": "index.js",
  "scripts": {
    "test": "echo \"Error: no test specified\" && exit 1"
  },
  "keywords": [],
  "author": "",
  "license": "ISC"
}



C:\WINDOWS\system32>




这也是下载安装只不过是cnpm方式
npm install -g cnpm --registry=https://registry.npm.taobao.org


C:\WINDOWS\system32>npm install -g cnpm --registry=http://registry.npm.taobao.org
C:\Users\91852\AppData\Roaming\npm\cnpm -> C:\Users\91852\AppData\Roaming\npm\node_modules\cnpm\bin\cnpm
+ cnpm@6.1.0
added 680 packages from 933 contributors in 202.016s

C:\WINDOWS\system32>

下面简述一下创建vue-cli2项目

vue上路_json_08

vue上路_vue上路_09

以下是具体命令操作

首先在D盘下得创建一个目录vuecli2

D:\>md vuecli2

然后才能下面这个

D:\>cd vuecli2

D:\vuecli2>
D:\vuecli2>vue init webpack testCLI

? Project name testdemo1
? Project description A Vue.js project
? Author zqc
? Vue build standalone
? Install vue-router? Yes
? Use ESLint to lint your code? Yes
? Pick an ESLint preset Standard
? Set up unit tests Yes
? Pick a test runner jest
? Setup e2e tests with Nightwatch? Yes
? Should we run `npm install` for you after the project has been created? (recommended) npm

   vue-cli · Generated "testCLI".


# Installing project dependencies ...
# ========================

npm WARN deprecated extract-text-webpack-plugin@3.0.2: Deprecated. Please use https://github.com/webpack-contrib/mini-css-extract-plugin
npm WARN deprecated browserslist@2.11.3: Browserslist 2 could fail on reading Browserslist >3.0 config used in other tools.
npm WARN deprecated core-js@2.6.10: core-js@<3.0 is no longer maintained and not recommended for usage due to the number of issues. Please, upgrade your dependencies to the actual version of core-js@3.
npm WARN deprecated bfj-node4@5.3.1: Switch to the `bfj` package for fixes and new features!
npm WARN deprecated json3@3.3.2: Please use the native JSON object instead of JSON 3
npm WARN deprecated fsevents@1.2.9: One of your dependencies needs to upgrade to fsevents v2: 1) Proper nodejs v10+ support 2) No more fetching binaries from AWS, smaller package size
npm WARN deprecated browserslist@1.7.7: Browserslist 2 could fail on reading Browserslist >3.0 config used in other tools.
npm WARN deprecated circular-json@0.3.3: CircularJSON is in maintenance only, flatted is its successor.
npm WARN deprecated socks@1.1.10: If using 2.x branch, please upgrade to at least 2.1.6 to avoid a serious bug with socket data flow and an import issue introduced in 2.1.0

> chromedriver@2.46.0 install D:\vuecli2\testCLI\node_modules\chromedriver
> node install.js

Current existing ChromeDriver binary is unavailable, proceding with download and extraction.
Downloading from file:  https://chromedriver.storage.googleapis.com/2.46/chromedriver_win32.zip
Saving to file: C:\Users\91852\AppData\Local\Temp\2.46\chromedriver\chromedriver_win32.zip
Received 781K...
Received 1568K...
Received 2349K...
Received 3136K...
Received 3920K...
Received 4523K total.
Extracting zip contents
Copying to target path D:\vuecli2\testCLI\node_modules\chromedriver\lib\chromedriver
Done. ChromeDriver binary available at D:\vuecli2\testCLI\node_modules\chromedriver\lib\chromedriver\chromedriver.exe

> core-js@2.6.10 postinstall D:\vuecli2\testCLI\node_modules\core-js
> node postinstall || echo "ignore"

Thank you for using core-js ( https://github.com/zloirock/core-js ) for polyfilling JavaScript standard library!

The project needs your help! Please consider supporting of core-js on Open Collective or Patreon:
> https://opencollective.com/core-js
> https://www.patreon.com/zloirock

Also, the author of core-js ( https://github.com/zloirock ) is looking for a good job -)


> uglifyjs-webpack-plugin@0.4.6 postinstall D:\vuecli2\testCLI\node_modules\webpack\node_modules\uglifyjs-webpack-plugin
> node lib/post_install.js

npm notice created a lockfile as package-lock.json. You should commit this file.
npm WARN ajv-keywords@2.1.1 requires a peer of ajv@^5.0.0 but none is installed. You must install peer dependencies yourself.
npm WARN optional SKIPPING OPTIONAL DEPENDENCY: fsevents@1.2.9 (node_modules\fsevents):
npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for fsevents@1.2.9: wanted {"os":"darwin","arch":"any"} (current: {"os":"win32","arch":"x64"})

added 1736 packages from 1098 contributors in 471.709s


Running eslint --fix to comply with chosen preset rules...
# ========================


> testdemo1@1.0.0 lint D:\vuecli2\testCLI
> eslint --ext .js,.vue src test/unit test/e2e/specs "--fix"


# Project initialization finished!
# ========================

To get started:

  cd testCLI
  npm run dev

Documentation can be found at https://vuejs-templates.github.io/webpack



D:\vuecli2>
D:\vuecli2>cd testCLI

D:\vuecli2\testCLI>npm run dev

> testdemo1@1.0.0 dev D:\vuecli2\testCLI
> webpack-dev-server --inline --progress --config build/webpack.dev.conf.js

 13% building modules 29/31 modules 2 active ...ndex=0!D:\vuecli2\testCLI\src\App.vue{ parser: "babylon" } is deprecated; we now treat it as { parser: "babel" }.
 95% emitting

 DONE  Compiled successfully in 6384ms                                                                  18:28:36

 I  Your application is running here: http://localhost:8080

然后在浏览器输入localhost:8080

就会出现和在开始的效果图一样

vue上路_json_10

vue上路_chrome_11

 

下一篇会出现helloworld

期待!

END