vue單頁多頁的開發環境配置+vue的開發思路

vue-multi-device-single-page

多個單頁應用整合的vue工程的開發環境
vue工程的目錄設置css

vue-cli vue 2.0 vue-resuorce vue-router vuex

本文內容:

  1. vue + vuex + vue-resuorce + vue-route 的工程 的目錄設計html

  2. 基於 vue-cli 的 多個vue單頁應用的開發環境 搭建vue

目錄:

1、開發環境使用node

2、需求分析webpack

3、開發思路ios

4、src目錄設計及思路git

5、開發環境開發github

6、整個開發環境的目錄註釋web

1、開發環境使用

多終端(頁面)路徑設置

  1. 在src/device/目錄下添加終端(頁面)路徑,如:src/device/pc/vue-router

  2. 在新添加的文件下加入這個終端(頁面)使用的打包模板,命名爲index.html,如:src/device/pc/index.html

  3. 在新添加的文件下加入這個終端(頁面)使用的入口文件,命名爲index.js,如:src/device/pc/index.js

build 打包

打生產環境的包,會自動把不一樣終端的文件按終端名稱分開

build-pc示例圖

npm run build 'device'

device : 接受的參數,在 /build/device-conf.js裏面有限制

示例: npm run build pc 打一個pc端的包

npm run build-all

打全部終端的包

dev 開發

npm run dev

開始進行調試,基於vue-cli的,因此基本是vue-cli的

  1. 自動打開一個網頁,從這裏選擇要調試的終端

build-pc示例圖

  1. 開始調試

index-pc

2、需求分析:

需求:

  1. 要開發pc端 + 移動端 + app混合開發的 頁面,每一個頁面都是單頁應用

  2. 爲了節約開發成本,這幾個端要共用一些組件,和 方法

  3. 打包要方便,調試要方便

  4. vue應用

幾個問題:

  1. vue-cli提供了很是好的開發環境,我可否在這個基礎上整一整,解決掉需求 2 和 3 呢?

  2. vue + vuex + vue-resuorce +vue-route 的工程目錄應該怎麼設計呢?

面對這樣的需求,個人理解是把多個單頁應用融合到一個工程裏面,下面是個人解決辦法

這個工程是啥

github https://github.com/vincentmrlau/vue-multi-device-single-page,歡迎交流

多端(也能夠是多頁)的單頁應用的vue工程的開發環境,本質上是多個單頁應用

基於vue,整合了vuex vue-resuorece vue-router 的開發目錄設計

整個基於vue-cli生成的目錄進行修改,除了test(正在研究)外的功能都可使用

3、開發思路

一、設置公用組件的目錄

二、抽離api,分爲公用的api和屬於各個頁面本身的api

三、每一個單頁應用vuex管理狀態

四、可能會被多人同時編輯,如何儘可能減小merge

五、針對這樣的需求的src下面的目錄應該怎麼設計(第三部分有寫)

六、針對需求配置開發環境(從第 部門開始是關於這個開發環境的)

4、src目錄設計及思路

介紹src的目錄設置及其做用

介紹 界面-模板html-組件-store-接口 的關係

概況兩圖流

  1. pc主頁示意圖

主頁示意圖

  1. 分析圖(怎一個亂字了得)

分析圖

目錄設置及其做用

├─src            # 源文件目錄
│  │  config.js
│  │  
│  ├─api        # 多端共用的 api
│  │      device-root.js
│  │      middleware.js
│  │      
│  ├─assets        # 多端共用的 資源
│  │      logo.png
│  │      
│  ├─components    # 多端共用的 組件
│  │      RootCommonComponent.vue
│  │      
│  └─device        # 設備入口 
│      ├─app    # 混合開發的放這裏了,也能夠分 ios 和 安卓
│      │      index.html    # app專用的html模板,打包好的東西會自動注入
│      │      index.js        # app的入口文件
│      │      
│      ├─mobile        # 這裏放移動端的頁面 ,下面的 index文件做用相似其餘端
│      │      index.html    
│      │      index.js
│      │      
│      └─pc            # 這個目錄下的都是pc端使用的,固然其餘端要用也是能夠的,哈哈
│          │  App.vue        # 入口組件
│          │  index.html    # 模板文件
│          │  index.js        # 入口文件
│          │  
│          ├─api            # 分離開接口
│          │      home.js    # home這個模塊用的接口
│          │      middleware.js            # 一些公用的中間件
│          │      
│          ├─assets            # 資源
│          ├─components        # 組件
│          │  ├─commonComponents    # 公共組件
│          │  │      Header.vue
│          │  │      
│          │  ├─Home    # home這個模塊用的組件
│          │  │      Body.vue
│          │  │      Index.vue
│          │  │      
│          │  └─Page404    # 404這個模塊用的組件
│          │          Index.vue
│          │          
│          ├─router        # 路由
│          │      index.js
│          │      
│          ├─store        # vuex 的store
│          │  │  index.js    # 根級別的store + 模塊組裝
│          │  │  
│          │  └─modules        # store 模塊
│          │          home.js    # home這個模塊使用的store
│          │          
│          └─types            # 放類型名稱
│                  home.js    # home這個模塊使用的 types
│                  root.js    # 公用的types

界面-模板-組件 的關係

界面:最後展示在用戶面前的

模板:用來注入打包的html文件

組件:編寫的vue組件

他們的關係如圖:

view-components

組件-store(vuex)-api(vue-resuorce) 的關係

  1. 組件使用store:

    1. 經過輔助函數(mapGetters,mapActions等)把store的屬性映射到組件中使用

    2. 組件經過action來提交mutation修改狀態

    3. 也能夠經過$store來使用

  2. 組件使用api:

    1. 組件經過store的action使用api

  3. store內部安排

    1. 由mutation來修改狀態

    2. 由action來提交mutation

  4. 由store的action來調用api

  5. api裏面分離開中間件,按需調用

看圖看圖 ↓↓↓

主頁示意圖

5、開發環境開發

在vue-cli v2.8.2生產的開發環境的基礎上進行修改

新增長:build/device-conf.js 用來出路多終端(頁面)開發相關問題

var chalk = require('chalk')
var glob = require('glob')

// 獲取deviceList
var deviceList = []
var deviceSrcArray = glob.sync('./src/device/*')
for(var x in deviceSrcArray){
  deviceList.push(deviceSrcArray[x].split('/')[3])
}

// 檢測是否在輸入的參數是否在容許的list中
var checkDevice = function () {
  var device = process.env.DEVICE_ENV
  var result = false
  // 檢查deviceList是否有重複
  var hash = {}
  var repeatList = []
  for(var l = 0;l < deviceList.length; l++){
    if(hash[deviceList[l]]){
      repeatList.push(deviceList[l])
    }
    hash[deviceList[l]] = true
  }
  if(repeatList.length > 0){
    console.log(chalk.bgRed('deviceList 有重複:'))
    console.log(chalk.bgRed(repeatList.toString()))
    return result
  }
  for(var i in deviceList){
    if(device === deviceList[i]){
      result = device
      break
    }
  }
  if(result === false){
    console.log(chalk.bgRed('參數錯誤,容許的參數爲:'))
    console.log(chalk.bgRed(deviceList.toString()))
  }
  return result
}

exports.deviceList = deviceList
exports.checkDevice = checkDevice
// 其餘依賴
exports.polyfills = ['babel-polyfill']

添加:/build/build-all.js

內部根據 deviceList 產生運行build.js子進程,完成打包

var execFileSync = require('child_process').execFileSync;
var path = require('path')
var deviceList = require('./device-conf').deviceList || []

var buildFile = path.join(__dirname, 'build.js')

for( var x in deviceList){
  console.log('building :',deviceList[x])
  execFileSync( 'node', [buildFile, deviceList[x]], {

  })
}

修改/build/build.js

添加設置環境變量並檢查參數代碼

var chalk = require('chalk')
// 設置process.env.DEVICE_ENV參數
// 沒有則返回錯誤
var device = process.argv[2]
var checkDevice = require('./device-conf').checkDevice
if(device){
  process.env.DEVICE_ENV = device
  if(!checkDevice()){
    return false
  }
}else {
  console.log(chalk.bgRed('  錯誤:缺乏參數,詳情請看readme.md  '))
  return false
}

修改/build/build.js

  1. 添加一個路由(在使用中間件connect-history-api-fallback以前添加),把可調試的入口展現出來

// 寫個小路由,打開瀏覽器的時候能夠選一個開發路徑
var deviceList = require('./device-conf').deviceList || []
var sentHref = ''
for(var x in deviceList){
  sentHref += '<a href="/'+ deviceList[x] +'/index.html">點我調試終端:'+ deviceList[x].toString() +'</a> <br>'
}
app.get('/devDeviceList', (req, res, next) => {
  res.send(sentHref)
})
  1. 修改打開的默認鏈接

opn(uri + '/devDeviceList')

修改/config/index.js 主要修改模板入口,打包出口等

// see http://vuejs-templates.github.io/webpack for documentation.
var path = require('path')
var device = process.env.DEVICE_ENV || 'undefined'


// 入口模板路徑
var htmlTemplate =  './src/device/' + device + '/index.html'

module.exports = {
  build: {
    env: require('./prod.env'),
    // 加入html入口
    htmlTemplate: htmlTemplate,
    index: path.resolve(__dirname, '../dist' , device , 'index.html'),
    assetsRoot: path.resolve(__dirname, '../dist' , device),
    assetsSubDirectory: 'static',
    // 這裏的路徑改爲相對路徑
    // 原來是: assetsPublicPath: '/',
    assetsPublicPath: '',
    productionSourceMap: true,
    // Gzip off by default as many popular static hosts such as
    // Surge or Netlify already gzip all static assets for you.
    // Before setting to `true`, make sure to:
    // npm install --save-dev compression-webpack-plugin
    productionGzip: false,
    productionGzipExtensions: ['js', 'css'],
    // Run the build command with an extra argument to
    // View the bundle analyzer report after build finishes:
    // `npm run build --report`
    // Set to `true` or `false` to always turn it on or off
    bundleAnalyzerReport: process.env.npm_config_report
  },
  dev: {
    env: require('./dev.env'),
    port: 8080,
    autoOpenBrowser: true,
    assetsSubDirectory: 'static',
    assetsPublicPath: '/',
    proxyTable: {},
    // CSS Sourcemaps off by default because relative paths are "buggy"
    // with this option, according to the CSS-Loader README
    // (https://github.com/webpack/css-loader#sourcemaps)
    // In our experience, they generally work as expected,
    // just be aware of this issue when enabling this option.
    cssSourceMap: false
  }
}

修改 /build/webpack.dev.conf.js

主要修改了入口配置,出口配置,以及模板文件配置

// 獲取device
var device = process.env.DEVICE_ENV

var utils = require('./utils')
var webpack = require('webpack')
var config = require('../config')
var merge = require('webpack-merge')
var baseWebpackConfig = require('./webpack.base.conf')
var HtmlWebpackPlugin = require('html-webpack-plugin')
var FriendlyErrorsPlugin = require('friendly-errors-webpack-plugin')

// 設置設備相關信息引入
var deviceList = require('./device-conf').deviceList
// 其餘依賴
var extraPolyfill = require('./device-conf').polyfills || []

// 設置入口
var entry = {}
// 設置html插件模板入口和依賴
var htmlPluginConf = []
for(var x in deviceList){
  // 設置 入口
  entry[deviceList[x]] = extraPolyfill.concat(
    ['./build/dev-client'],
    './src/device/' + deviceList[x] + '/index.js'
  )
  var _htmlPlugin = new HtmlWebpackPlugin({
    filename: deviceList[x]+'/index.html',
    template: './src/device/' + deviceList[x] + '/index.html',
    chunks: [deviceList[x]]
  })
  htmlPluginConf.push(_htmlPlugin)
}




// add hot-reload related code to entry chunks
// 把熱重載所需的代碼也打包進去
// Object.keys(baseWebpackConfig.entry).forEach(function (name) {
//   baseWebpackConfig.entry[name] = ['./build/dev-client'].concat(baseWebpackConfig.entry[name])
// })

// 刪除的entry和output
try {
  delete baseWebpackConfig.entry
}catch (e){
  console.log(e)
}
try{
  delete baseWebpackConfig.output
}catch (e){
  console.log(e)
}

module.exports = merge(baseWebpackConfig, {
  // 設置入口
  entry: entry,
  // 設置出口
  output: {
    path: '/',
    filename: '[name].js',
    publicPath: config.dev.assetsPublicPath
  },
  module: {
    rules: utils.styleLoaders({ sourceMap: config.dev.cssSourceMap })
  },
  // cheap-module-eval-source-map is faster for development
  devtool: '#cheap-module-eval-source-map',
  plugins: [
    new webpack.DefinePlugin({
      'process.env': config.dev.env
    }),
    // https://github.com/glenjamin/webpack-hot-middleware#installation--usage
    new webpack.HotModuleReplacementPlugin(),
    new webpack.NoEmitOnErrorsPlugin(),
    // https://github.com/ampedandwired/html-webpack-plugin
    // new HtmlWebpackPlugin({
    //   filename: 'index.html',
    //   template: config.dev.htmlTemplate,
    //   inject: true
    // }),
    new FriendlyErrorsPlugin()
  ].concat(htmlPluginConf)
})

修改 /build/webpack.prod.conf.js

主要修改了入口配置,出口配置,以及模板文件配置

var path = require('path')
var utils = require('./utils')
var webpack = require('webpack')
var config = require('../config')
var merge = require('webpack-merge')
var baseWebpackConfig = require('./webpack.base.conf')
var CopyWebpackPlugin = require('copy-webpack-plugin')
var HtmlWebpackPlugin = require('html-webpack-plugin')
var ExtractTextPlugin = require('extract-text-webpack-plugin')
var OptimizeCSSPlugin = require('optimize-css-assets-webpack-plugin')

var env = process.env.NODE_ENV === 'testing'
  ? require('../config/test.env')
  : config.build.env

// 設置device相關變量
var device = process.env.DEVICE_ENV
//設置入口
var extraPolyFill = require('./device-conf').polyfills ||[]
var entry = {
  index: extraPolyFill.concat('./src/device/' + device + '/index.js')
}

console.log(config.build.htmlTemplate)
var webpackConfig = merge(baseWebpackConfig, {
  module: {
    rules: utils.styleLoaders({
      sourceMap: config.build.productionSourceMap,
      extract: true
    })
  },
  // 寫入prod的入口
  entry: entry,
  devtool: config.build.productionSourceMap ? '#source-map' : false,
  output: {
    path: config.build.assetsRoot,
    filename: utils.assetsPath('js/[name].[chunkhash].js'),
    chunkFilename: utils.assetsPath('js/[id].[chunkhash].js')
  },
  plugins: [
    // http://vuejs.github.io/vue-loader/en/workflow/production.html
    new webpack.DefinePlugin({
      'process.env': env
    }),
    new webpack.optimize.UglifyJsPlugin({
      compress: {
        warnings: false
      },
      sourceMap: true
    }),
    // extract css into its own file
    new ExtractTextPlugin({
      filename: utils.assetsPath('css/[name].[contenthash].css')
    }),
    // Compress extracted CSS. We are using this plugin so that possible
    // duplicated CSS from different components can be deduped.
    new OptimizeCSSPlugin({
      cssProcessorOptions: {
        safe: true
      }
    }),
    // generate dist pc.html with correct asset hash for caching.
    // you can customize output by editing /pc.html
    // see https://github.com/ampedandwired/html-webpack-plugin
    new HtmlWebpackPlugin({
      filename: process.env.NODE_ENV === 'testing'
        ? 'index.html'
        : config.build.index,
      // template: 'index.html',
      template: config.build.htmlTemplate,
      inject: true,
      minify: {
        removeComments: true,
        collapseWhitespace: true,
        removeAttributeQuotes: true
        // more options:
        // https://github.com/kangax/html-minifier#options-quick-reference
      },
      // necessary to consistently work with multiple chunks via CommonsChunkPlugin
      chunksSortMode: 'dependency'
    }),
    // split vendor js into its own file
    new webpack.optimize.CommonsChunkPlugin({
      name: 'vendor',
      minChunks: function (module, count) {
        // any required modules inside node_modules are extracted to vendor
        return (
          module.resource &&
          /\.js$/.test(module.resource) &&
          module.resource.indexOf(
            path.join(__dirname, '../node_modules')
          ) === 0
        )
      }
    }),
    // extract webpack runtime and module manifest to its own file in order to
    // prevent vendor hash from being updated whenever app bundle is updated
    new webpack.optimize.CommonsChunkPlugin({
      name: 'manifest',
      chunks: ['vendor']
    }),
    // copy custom static assets
    new CopyWebpackPlugin([
      {
        from: path.resolve(__dirname, '../static'),
        to: config.build.assetsSubDirectory,
        ignore: ['.*']
      }
    ])
  ]
})

if (config.build.productionGzip) {
  var 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) {
  var BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin
  webpackConfig.plugins.push(new BundleAnalyzerPlugin())
}

module.exports = webpackConfig

6、整個開發環境的目錄註釋

│  .babelrc
│  .editorconfig
│  .eslintignore
│  .eslintrc.js
│  .gitignore
│  .postcssrc.js
│  index.html
│  npm-debug.log
│  package.json
│  README.md
│  tree.txt
│          
├─build   # 這裏是打包工具相關的
│      build-all.js # 經過打包全部端的代碼
│      build.js        # 這裏設定進程的環境變量
│      check-versions.js
│      dev-client.js  
│      dev-server.js    # 這裏也須要對進程的環境變量進行設定
│      device-conf.js    # 這裏面有關於多端開發、打包的相關設定
│      utils.js
│      vue-loader.conf.js
│      webpack.base.conf.js        # 修改了入口、出口等
│      webpack.dev.conf.js        # 修改了入口、出口等
│      webpack.prod.conf.js        # 修改了入口出口等
│      webpack.test.conf.js        # 測試相關還未完善
│      
├─config
│      dev.env.js
│      index.js                    # 打包的入口和出口
│      prod.env.js
│      test.env.js
│      
├─dist        # 最後打包的目錄 分端儲存
│  ├─app
│  │  │  index.html
│  │  │  
│  │  └─static
│  │      └─js
│  │              index.0142f89e3523b3b0d16b.js
│  │              index.0142f89e3523b3b0d16b.js.map
│  │              manifest.57f6691c595e842abc95.js
│  │              manifest.57f6691c595e842abc95.js.map
│  │              vendor.cce790f63359fc27fa7d.js
│  │              vendor.cce790f63359fc27fa7d.js.map
│  │              
│  ├─mobile
│  │  │  index.html
│  │  │  
│  │  └─static
│  │      └─js
│  │              index.0142f89e3523b3b0d16b.js
│  │              index.0142f89e3523b3b0d16b.js.map
│  │              manifest.57f6691c595e842abc95.js
│  │              manifest.57f6691c595e842abc95.js.map
│  │              vendor.cce790f63359fc27fa7d.js
│  │              vendor.cce790f63359fc27fa7d.js.map
│  │              
│  └─pc
│      │  index.html
│      │  
│      └─static
│          ├─css
│          │      index.1e809171f3a961de951e3c8e6644435f.css
│          │      index.1e809171f3a961de951e3c8e6644435f.css.map
│          │      
│          └─js
│                  0.f3e74a76d92b3f6ca5ec.js
│                  0.f3e74a76d92b3f6ca5ec.js.map
│                  1.fb471d3425df8c16ac54.js
│                  1.fb471d3425df8c16ac54.js.map
│                  index.a2ba631673923f812cf1.js
│                  index.a2ba631673923f812cf1.js.map
│                  manifest.ab6461111db19541d04b.js
│                  manifest.ab6461111db19541d04b.js.map
│                  vendor.aeee805b1efff3748018.js
│                  vendor.aeee805b1efff3748018.js.map
│                  
├─images         # 這個放點文檔寫文檔用的圖片                        
├─sever            # 這裏寫點服務端程序,用於測試等
│      prod-view-server.js
│      
├─src            # 源文件目錄
│  │  config.js
│  │  
│  ├─api        # 多端共用的 api
│  │      device-root.js
│  │      middleware.js
│  │      
│  ├─assets        # 多端共用的 資源
│  │      logo.png
│  │      
│  ├─components    # 多端共用的 組件
│  │      RootCommonComponent.vue
│  │      
│  └─device        # 設備入口 
│      ├─app    # 混合開發的放這裏了,也能夠分 ios 和 安卓
│      │      index.html    # app專用的html模板,打包好的東西會自動注入
│      │      index.js        # app的入口文件
│      │      
│      ├─mobile        # 這裏放移動端的頁面 ,下面的 index文件做用相似其餘端
│      │      index.html    
│      │      index.js
│      │      
│      └─pc            # 這個目錄下的都是pc端使用的,固然其餘端要用也是能夠的,哈哈
│          │  App.vue        # 入口組件
│          │  index.html    # 模板文件
│          │  index.js        # 入口文件
│          │  
│          ├─api            # 分離開接口
│          │      home.js    # home這個模塊用的接口
│          │      middleware.js            # 一些公用的中間件
│          │      
│          ├─assets            # 資源
│          ├─components        # 組件
│          │  ├─commonComponents    # 公共組件
│          │  │      Header.vue
│          │  │      
│          │  ├─Home    # home這個模塊用的組件
│          │  │      Body.vue
│          │  │      Index.vue
│          │  │      
│          │  └─Page404    # 404這個模塊用的組件
│          │          Index.vue
│          │          
│          ├─router        # 路由
│          │      index.js
│          │      
│          ├─store        # vuex 的store
│          │  │  index.js    # 根級別的store + 模塊組裝
│          │  │  
│          │  └─modules        # store 模塊
│          │          home.js    # home這個模塊使用的store
│          │          
│          └─types            # 放類型名稱
│                  home.js    # home這個模塊使用的 types
│                  root.js    # 公用的types
│                  
├─static
│      .gitkeep
│      
└─test    # 測試相關 TODO
相關文章
相關標籤/搜索