欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Vue CLI 2.x搭建vue(目录最全分析)

程序员文章站 2022-05-07 12:51:13
一、vue-cli介绍 vue-cli是一个用于快速搭建vue项目的 脚手架。 二、vue-cli安装、更新 安装过nodejs 、cnpm 后,全局安装vue-cl...

一、vue-cli介绍

vue-cli是一个用于快速搭建vue项目的 脚手架。

二、vue-cli安装、更新

安装过nodejs 、cnpm 后,全局安装vue-cli(以后其他项目可直接使用):

cnpm install -g vue-cli

更新:

cnpm update vue-cli

查看安装成功否(有版本号就是成功,v大写)

vue -v

查看npm注册表里vue-cli版本号:

cnpm view vue-cli

三、vue-cli 使用

安装过webpack 、vue-cli后,可以开始搭建vue项目:

vue init webpack <project name>

eg:右击git base here(如果你没有用git ,你也可以按住shift键右击选择“在此处打开命令窗口”,或者 cmd :cd \project/lfxproject),如图:

Vue CLI 2.x搭建vue(目录最全分析)or

ps:eslint(一个javascript代码检测工具)、unit tests(单元测试)、nightwatch(一个e2e用户界面测试工具)。

四、项目完成

项目结构如下:

Vue CLI 2.x搭建vue(目录最全分析)

各文件作用解析,如下:

1、build文件夹:

build文件夹的结构:

Vue CLI 2.x搭建vue(目录最全分析)

(1)build.js

'use strict'
require('./check-versions')() //调用版本检查

process.env.node_env = 'production' //将环境配置为生产环境
const ora = require('ora') //npm包 loading插件
const rm = require('rimraf') //npm包 用于删除文件
const path = require('path')//npm包 文件路径工具
const chalk = require('chalk')//npm包 在终端输出带颜色的文字
const webpack = require('webpack')//引入webpack.js
const config = require('../config')//引入配置文件
const webpackconfig = require('./webpack.prod.conf')//引入生产环境配置文件
// 在终端显示loading效果,并输出提示
const spinner = ora('building for production...')
spinner.start()
//先递归删除dist文件再生成新文件,避免冗余
rm(path.join(config.build.assetsroot, config.build.assetssubdirectory), err => {
 if (err) throw err
 webpack(webpackconfig, (err, stats) => {
  spinner.stop()
  if (err) throw err
  process.stdout.write(stats.tostring({
   colors: true,
   modules: false,
   children: false, 
   chunks: false,
   chunkmodules: false
  }) + '\n\n')

  if (stats.haserrors()) {
   console.log(chalk.red(' build failed with errors.\n'))
   process.exit(1)
  }

  console.log(chalk.cyan(' build complete.\n'))
  console.log(chalk.yellow(
   ' tip: built files are meant to be served over an http server.\n' +
   ' opening index.html over file:// won\'t work.\n'
  ))
 })
})

ps:require/export是一种nodejs(commonjs规范)的依赖注入的方法,import/export是es6语法,用于引入模块,在nodejs中使用的es6语法最终会使用babel工具(babel-loader)转化为es5

(2)check-version.js:检测node和npm的版本,实现版本依赖

'use strict'
const chalk = require('chalk')
const semver = require('semver')//检查版本
const packageconfig = require('../package.json')
const shell = require('shelljs')//shelljs 模块重新包装了 child_process,调用系统命令更加方便

function exec (cmd) {//返回通过child_process模块的新建子进程,执行 unix 系统命令后转成没有空格的字符串
 return require('child_process').execsync(cmd).tostring().trim()
}

const versionrequirements = [
 {
  name: 'node',
  currentversion: semver.clean(process.version),//使用semver格式化版本
  versionrequirement: packageconfig.engines.node //获取package.json中设置的node版本
 }
]

if (shell.which('npm')) {
 versionrequirements.push({
  name: 'npm',
  currentversion: exec('npm --version'),// 自动调用npm --version命令,并且把参数返回给exec函数,从而获取纯净的版本号
  versionrequirement: packageconfig.engines.npm
 })
}

module.exports = function () {
 const warnings = []
 for (let i = 0; i < versionrequirements.length; i++) {
  const mod = versionrequirements[i]
  //若版本号不符合package.json文件中指定的版本号,就报错
  if (!semver.satisfies(mod.currentversion, mod.versionrequirement)) {
   warnings.push(mod.name + ': ' +
    chalk.red(mod.currentversion) + ' should be ' +
    chalk.green(mod.versionrequirement)
   )
  }
 }

 if (warnings.length) {
  console.log('')
  console.log(chalk.yellow('to use this template, you must update following to modules:'))
  console.log()
  for (let i = 0; i < warnings.length; i++) {
   const warning = warnings[i]
   console.log(' ' + warning)
  }
  console.log()
  process.exit(1)
 }
}

(3)utils.js:utils是工具的意思,是一个用来处理css的文件,这个文件包含了三个工具函数:

  • 生成静态资源的路径
  • 生成 extracttextplugin对象或loader字符串
  • 生成 style-loader的配置
var path = require('path')// node自带的文件路径工具
var config = require('../config')// 配置文件
var extracttextplugin = require('extract-text-webpack-plugin')// 提取css的插件

/** @method assertspath 生成静态资源的路径(判断开发环境和生产环境,为config文件中index.js文件中定义assetssubdirectory)
 * @param {string}  _path 相对于静态资源文件夹的文件路径
 * @return {string}     静态资源完整路径
 */
exports.assetspath = function (_path) {
 var assetssubdirectory = process.env.node_env === 'production'
  ? config.build.assetssubdirectory
  : config.dev.assetssubdirectory
 //nodejs path提供用于处理文件路径的工具;path.posix提供对路径方法的posix(可移植性操作系统接口)特定实现的访问(可跨平台); path.posix.join与path.join一样,不过总是以 posix 兼容的方式交互
 return path.posix.join(assetssubdirectory, _path)
}

/**@method cssloaders 生成处理css的loaders配置,使用css-loader和postcssloader,通过options.usepostcss属性来判断是否使用postcssloader中压缩等方法
 * @param {object} option = {sourcemap: true,// 是否开启 sourcemapextract: true // 是否提取css}生成配置
 * @return {object} 处理css的loaders配置对象
 */
exports.cssloaders = function (options) {
 options = options || {}

 var cssloader = {
  loader: 'css-loader',
  options: {
   minimize: process.env.node_env === 'production',
   sourcemap: options.sourcemap
  }
 }
 /**@method generateloaders 生成 extracttextplugin对象或loader字符串
  * @param {array}    loaders loader名称数组
  * @return {string|object}    extracttextplugin对象或loader字符串
  */
 function generateloaders (loader, loaderoptions) {
  var loaders = [cssloader]
  if (loader) {
   loaders.push({  
    loader: loader + '-loader',
    options: object.assign({}, loaderoptions, {
     sourcemap: options.sourcemap
    })
   })
  }
  // extracttextplugin提取css(当上面的loaders未能正确引入时,使用vue-style-loader)
  if (options.extract) {// 生产环境中,默认为true
   return extracttextplugin.extract({
    use: loaders,
    fallback: 'vue-style-loader'
   })
  } else {//返回vue-style-loader连接loaders的最终值
   return ['vue-style-loader'].concat(loaders)
  }
 }

 return {
  css: generateloaders(),//需要css-loader 和 vue-style-loader
  postcss: generateloaders(),//需要css-loader、postcssloader 和 vue-style-loader
  less: generateloaders('less'),//需要less-loader 和 vue-style-loader
  sass: generateloaders('sass', { indentedsyntax: true }),//需要sass-loader 和 vue-style-loader
  scss: generateloaders('sass'),//需要sass-loader 和 vue-style-loader
  stylus: generateloaders('stylus'),//需要stylus-loader 和 vue-style-loader
  styl: generateloaders('stylus')//需要stylus-loader 和 vue-style-loader
 }
}
 
/**@method styleloaders 生成 style-loader的配置
 * @param {object}   options 生成配置
 * @return {array}   style-loader的配置
 */
exports.styleloaders = function (options) {
 var output = []
 var loaders = exports.cssloaders(options)
 //将各种css,less,sass等综合在一起得出结果输出output
 for (var extension in loaders) {
  var loader = loaders[extension]
  output.push({
   test: new regexp('\\.' + extension + '$'),
   use: loader
  })
 }
 return output
}

(4)vue-loader.conf.js:处理.vue文件,解析这个文件中的每个语言块(template、script、style),转换成js可用的js模块。

'use strict'
const utils = require('./utils')
const config = require('../config')
const isproduction = process.env.node_env === 'production'
//生产环境,提取css样式到单独文件
const sourcemapenabled = isproduction
 ? config.build.productionsourcemap
 : config.dev.csssourcemap
module.exports = {
 loaders: utils.cssloaders({
  sourcemap: sourcemapenabled,
  extract: isproduction
 }),
 csssourcemap: sourcemapenabled,
 cachebusting: config.dev.cachebusting,
 //编译时将“引入路径”转换为require调用,使其可由webpack处理
 transformtorequire: {
  video: ['src', 'poster'],
  source: 'src',
  img: 'src',
  image: 'xlink:href'
 }
}

(5)webpack.base.conf.js:开发、测试、生产环境的公共基础配置文件,配置输出环境,配置模块resolve和插件等

'use strict'
const path = require('path')// node自带的文件路径工具
const utils = require('./utils')// 工具函数集合
const config = require('../config')// 配置文件
const vueloaderconfig = require('./vue-loader.conf')// 工具函数集合
/**
 * 获取"绝对路径"
 * @method resolve
 * @param {string} dir 相对于本文件的路径
 * @return {string}   绝对路径
 */
function resolve(dir) {
 return path.join(__dirname, '..', dir)
}

module.exports = {
 context: path.resolve(__dirname, '../'),
 //入口js文件(默认为单页面所以只有app一个入口)
 entry: {
  app: './src/main.js'
 },
 //配置出口
 output: {
  path: config.build.assetsroot,//打包编译的根路径(dist)
  filename: '[name].js',
  publicpath: process.env.node_env === 'production'
   ? config.build.assetspublicpath
   : config.dev.assetspublicpath//发布路径
 },
 resolve: {
  extensions: ['.js', '.vue', '.json'],// 自动补全的扩展名
  //别名配置
  alias: {
   'vue$': 'vue/dist/vue.esm.js',
   '@': resolve('src'),// eg:"src/components" => "@/components"
  }
 },
 module: {
  rules: [
   //使用vue-loader将vue文件编译转换为js
   {
    test: /\.vue$/,
    loader: 'vue-loader',
    options: vueloaderconfig
   },
   //通过babel-loader将es6编译压缩成es5
   {
    test: /\.js$/,
    loader: 'babel-loader',
    include: [resolve('src'), resolve('test'), resolve('node_modules/webpack-dev-server/client')]
   },
   //使用url-loader处理(图片、音像、字体),超过10000编译成base64
   {
    test: /\.(png|jpe?g|gif|svg)(\?.*)?$/,
    loader: 'url-loader',
    options: {
     limit: 10000,
     name: utils.assetspath('img/[name].[hash:7].[ext]')
    }
   },
   {
    test: /\.(mp4|webm|ogg|mp3|wav|flac|aac)(\?.*)?$/,
    loader: 'url-loader',
    options: {
     limit: 10000,
     name: utils.assetspath('media/[name].[hash:7].[ext]')
    }
   },
   {
    test: /\.(woff2?|eot|ttf|otf)(\?.*)?$/,
    loader: 'url-loader',
    options: {
     limit: 10000,
     name: utils.assetspath('fonts/[name].[hash:7].[ext]')
    }
   }
  ]
 },
 //nodejs全局变量/模块,防止webpack注入一些nodejs的东西到vue中
 node: {
  setimmediate: false,
  dgram: 'empty',
  fs: 'empty',
  net: 'empty',
  tls: 'empty',
  child_process: 'empty'
 }
}

(6)webpack.dev.conf.js:webpack配置开发环境中的入口

'use strict'
const utils = require('./utils')
const webpack = require('webpack')
const config = require('../config')
const merge = require('webpack-merge')//webpack-merge实现合并
const path = require('path')
const basewebpackconfig = require('./webpack.base.conf')
const copywebpackplugin = require('copy-webpack-plugin')
const htmlwebpackplugin = require('html-webpack-plugin')
const friendlyerrorsplugin = require('friendly-errors-webpack-plugin')//webpack的提示错误和日志信息的插件
const portfinder = require('portfinder')// 查看空闲端口位置,默认情况下搜索8000这个端口

const host = process.env.host
const port = process.env.port && number(process.env.port)

const devwebpackconfig = merge(basewebpackconfig, {
 module: {
  rules: utils.styleloaders({ sourcemap: config.dev.csssourcemap, usepostcss: true })
 },
 devtool: config.dev.devtool,//调试模式
 devserver: {
  clientloglevel: 'warning',
  historyapifallback: {//使用 html5 history api 时, 404 响应替代为 index.html
   rewrites: [
    { from: /.*/, to: path.posix.join(config.dev.assetspublicpath, 'index.html') },
   ],
  },
  hot: true,//热重载
  contentbase: false, // 提供静态文件访问
  compress: true,//压缩
  host: host || config.dev.host,
  port: port || config.dev.port,
  open: config.dev.autoopenbrowser,//npm run dev 时自动打开浏览器
  overlay: config.dev.erroroverlay
   ? { warnings: false, errors: true }
   : false,// 显示warning 和 error 信息
  publicpath: config.dev.assetspublicpath,
  proxy: config.dev.proxytable,//api代理
  quiet: true, //控制台打印警告和错误(用friendlyerrorsplugin 为 true)
  watchoptions: {// 检测文件改动
   poll: config.dev.poll,
  }
 },
 plugins: [
  new webpack.defineplugin({
   'process.env': require('../config/dev.env')
  }),
  new webpack.hotmodulereplacementplugin(),//模块热替换插件,修改模块时不需要刷新页面
  new webpack.namedmodulesplugin(), // hmr shows correct file names in console on update.
  new webpack.noemitonerrorsplugin(),//webpack编译错误的时候,中断打包进程,防止错误代码打包到文件中
  // 将打包编译好的代码插入index.html
  new htmlwebpackplugin({
   filename: 'index.html',
   template: 'index.html',
   inject: true
  }),
  // 提取static assets 中css 复制到dist/static文件
  new copywebpackplugin([
   {
    from: path.resolve(__dirname, '../static'),
    to: config.dev.assetssubdirectory,
    ignore: ['.*']//忽略.*的文件
   }
  ])
 ]
})

module.exports = new promise((resolve, reject) => {
 portfinder.baseport = process.env.port || config.dev.port
 portfinder.getport((err, port) => { //查找端口号
  if (err) {
   reject(err)
  } else {
   //端口被占用时就重新设置evn和devserver的端口
   process.env.port = port
   devwebpackconfig.devserver.port = port
   // npm run dev成功的友情提示
   devwebpackconfig.plugins.push(new friendlyerrorsplugin({
    compilationsuccessinfo: {
     messages: [`your application is running here: http://${devwebpackconfig.devserver.host}:${port}`],
    },
    onerrors: config.dev.notifyonerrors
    ? utils.createnotifiercallback()
    : undefined
   }))
   resolve(devwebpackconfig)
  }
 })
})

(7)webpack.dev.prod.js:webpack配置生产环境中的入口

'use strict'
const path = require('path')
const utils = require('./utils')
const webpack = require('webpack')
const config = require('../config')
const merge = require('webpack-merge')
const basewebpackconfig = require('./webpack.base.conf')
const copywebpackplugin = require('copy-webpack-plugin')
const htmlwebpackplugin = require('html-webpack-plugin')
const extracttextplugin = require('extract-text-webpack-plugin')
const optimizecssplugin = require('optimize-css-assets-webpack-plugin')
const uglifyjsplugin = require('uglifyjs-webpack-plugin')

const env = require('../config/prod.env')

const webpackconfig = merge(basewebpackconfig, {
 module: {
  rules: utils.styleloaders({
   sourcemap: config.build.productionsourcemap,
   extract: true,
   usepostcss: true
  })
 },
 devtool: config.build.productionsourcemap ? config.build.devtool : false,//是否开启调试模式
 output: {
  path: config.build.assetsroot,
  filename: utils.assetspath('js/[name].[chunkhash].js'),
  chunkfilename: utils.assetspath('js/[id].[chunkhash].js')
 },
 plugins: [
  new webpack.defineplugin({
   'process.env': env
  }),
  new uglifyjsplugin({//压缩js
   uglifyoptions: {
    compress: {
     warnings: false
    }
   },
   sourcemap: config.build.productionsourcemap,
   parallel: true
  }),
  new extracttextplugin({//提取静态文件,减少请求
   filename: utils.assetspath('css/[name].[contenthash].css'),
   allchunks: true,
  }),
  new optimizecssplugin({//提取优化压缩后(删除来自不同组件的冗余代码)的css
   cssprocessoroptions: config.build.productionsourcemap
    ? { safe: true, map: { inline: false } }
    : { safe: true }
  }),
  new htmlwebpackplugin({ //html打包压缩到index.html
   filename: config.build.index,
   template: 'index.html',
   inject: true,
   minify: {
    removecomments: true,//删除注释
    collapsewhitespace: true,//删除空格
    removeattributequotes: true//删除属性的引号
   },
   chunkssortmode: 'dependency'//模块排序,按照我们需要的顺序排序
  }),

  new webpack.hashedmoduleidsplugin(),
  new webpack.optimize.moduleconcatenationplugin(),
  new webpack.optimize.commonschunkplugin({  // node_modules中的任何所需模块都提取到vendor
   name: 'vendor',
   minchunks (module) {
    return (
     module.resource &&
     /\.js$/.test(module.resource) &&
     module.resource.indexof(
      path.join(__dirname, '../node_modules')
     ) === 0
    )
   }
  }),
  new webpack.optimize.commonschunkplugin({
   name: 'manifest',
   minchunks: infinity
  }),
  new webpack.optimize.commonschunkplugin({
   name: 'app',
   async: 'vendor-async',
   children: true,
   minchunks: 3
  }),
  new copywebpackplugin([//复制static中的静态资源(默认到dist里面)
   {
    from: path.resolve(__dirname, '../static'),
    to: config.build.assetssubdirectory,
    ignore: ['.*']
   }
  ])
 ]
})

if (config.build.productiongzip) {
 const compressionwebpackplugin = require('compression-webpack-plugin')

 webpackconfig.plugins.push(
  new compressionwebpackplugin({
   asset: '[path].gz[query]',
   algorithm: 'gzip',
   test: new regexp(
    '\\.(' +
    config.build.productiongzipextensions.join('|') +
    ')$'
   ),
   threshold: 10240,
   minratio: 0.8
  })
 )
}

if (config.build.bundleanalyzerreport) {
 const bundleanalyzerplugin = require('webpack-bundle-analyzer').bundleanalyzerplugin
 webpackconfig.plugins.push(new bundleanalyzerplugin())
}

module.exports = webpackconfig

2、config文件夹:

config文件夹的结构:

Vue CLI 2.x搭建vue(目录最全分析)

(1) dev.env.js和prod.env.js:分别配置:开发环境和生产环境。这个可以根据公司业务结合后端需求配置需要区分开发环境和测试环境的属性

'use strict'
const merge = require('webpack-merge')
const prodenv = require('./prod.env')

module.exports = merge(prodenv, {
 node_env: '"development"'
})

ps:webpack-merge用于实现合并类似于es6的object.assign()

'use strict'
module.exports = {
 node_env: '"production"'
}

(*注意属性值要用“‘'”双层引住),访问(获取值)时直接用:

process.env.属性名

ps:process(进程)是nodejs的一个全局变量,process.env 属性返回一个用户环境信息的对象

(2)index.js配置解析:

'use strict';
const path = require('path');

module.exports = {

 // ===================开发环境配置

 dev: {
  assetssubdirectory: 'static',//静态资源文件夹(一般存放css、js、image等文件)
  assetspublicpath: '/',//根目录
  proxytable: {},//配置api代理,可利用该属性解决跨域的问题
  host: 'localhost', // 可以被 process.env.host 覆盖
  port: 3030, // 可以被 process.env.port 覆盖
  autoopenbrowser: true,//编译后自动打开浏览器页面 http://localhost:3030/("port + host",默认"false"),设置路由重定向自动打开您的默认页面
  erroroverlay: true,//浏览器错误提示
  notifyonerrors: true,//跨平台错误提示
  poll: false, //webpack提供的使用文件系统(file system)获取文件改动的通知devserver.watchoptions(监控文件改动)
  devtool: 'cheap-module-eval-source-map',//webpack提供的用来调试的模式,有多个不同值代表不同的调试模式
  cachebusting: true,// 配合devtool的配置,当给文件名插入新的hash导致清除缓存时是否生成source-map
  csssourcemap: true //记录代码压缩前的位置信息,当产生错误时直接定位到未压缩前的位置,方便调试
 },

// ========================生产环境配置

 build: {
  index: path.resolve(__dirname, '../dist/index.html'),//编译后"首页面"生成的绝对路径和名字
  assetsroot: path.resolve(__dirname, '../dist'),//打包编译的根路径(默认dist,存放打包压缩后的代码)
  assetssubdirectory: 'static',//静态资源文件夹(一般存放css、js、image等文件)
  assetspublicpath: '/',//发布的根目录(dist文件夹所在路径)
  productionsourcemap: true,//是否开启source-map
  devtool: '#source-map',//(详细参见:https://webpack.docschina.org/configuration/devtool)
  productiongzip: false,//是否压缩
  productiongzipextensions: ['js', 'css'],//unit的gzip命令用来压缩文件(gzip模式下需要压缩的文件的扩展名有js和css)
  bundleanalyzerreport: process.env.npm_config_report //是否开启打包后的分析报告
 }
};

3、node_modules文件夹:

存放npm install时根据package.json配置生成的npm安装包的文件夹

4、src文件夹:

我们需要在src文件夹中开发代码,打包时webpack会根据build中的规则(build规则依赖于config中的配置)将src打包压缩到dist文件夹在浏览器中运行

(1)assets文件:用于存放静态资源(css、image),assets打包时路径会经过webpack中的file-loader编译(因此,assets需要使用绝对路径)成js

(2)components文件夹:用来存放 .vue 组件(实现复用等功能,如:过滤器,列表项等)

(3)router文件夹:在router/index.js文件中配置页面路由

(4)app.vue:是整个项目的主组件,所有页面都是通过使用<router-view/>开放入口在app.vue下进行切换的(所有的路由都是app.vue的子组件)

(5)main.js:入口js文件(全局js,你可以在这里:初始化vue实例、require/import需要的插件、注入router路由、引入store状态管理)

5、static文件夹:

webpack默认存放静态资源(css、image)的文件夹,与assets不同的是:static在打包时会直接复制一个同名文件夹到dist文件夹里(不会经过编译,可使用相对路径)

6、其他文件:

(1).babelrc:浏览器解析的兼容配置,该文件主要是对预设(presets)和插件(plugins)进行配置,因此不同的转译器作用不同的配置项,大致可分为:语法转义器、补丁转义器、sx和flow插件

(2).editorconfig:用于配置代码格式(配合代码检查工具使用,如:eslint,团队开发时可统一代码风格),这里配置的代码规范规则优先级高于编辑器默认的代码格式化规则 。

3).gitignore:配置git提交时需要忽略的文件

(4)postcssrc.js: autoprefixer(自动补全css样式的浏览器前缀);postcss-import(@import引入语法)、css modules(规定样式作用域)

(5)index.html:项目入口页面,编译之后所有代码将插入到这来

6)package.json:npm的配置文件(npm install根据package.json下载对应版本的安装包)

(7)package.lock.json:npm install(安装)时锁定各包的版本号

(8)readme.md:项目使用说明

五、运行项目

在webstorm中打开项目,首先赶紧右击project进行如下操作(否则会卡死,还有各种其他方法参见:

Vue CLI 2.x搭建vue(目录最全分析)

1、启动安装:cnpm install

Vue CLI 2.x搭建vue(目录最全分析)

2、然后npm run dev:跑起来~

Vue CLI 2.x搭建vue(目录最全分析)

3、生成打包文件 :npm run build 

然后你会发现项目多了个dist文件夹(用于部署到生产环境用,是打包压缩之后的src文件夹)

Vue CLI 2.x搭建vue(目录最全分析)

了解 vue cli 3 参见本人博客:

了解 node 、npm 安装/更新/使用,参见本人博客 :

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。