Webpackでvueプロジェクトを構築する(一)

38467 ワード

まずnodeをインストールします

一、webpack


1、フォルダamazingを新規作成し、フォルダに入る


コマンドライン実行
npm init -y  (y --》  yes ,         )

そしてコマンドラインの1回のリターンが完了するとpackageが生成される.jsonファイル

2、webpackとwebpack-cliをインストールする

npm install webpack webpack-cli --save-dev

3、ファイルにsrc、publicの2つのフォルダとwebpackを作成する.config.jsプロファイル


①、サブフォルダpublicにindexを新規作成する.html(このファイルはエントリファイルテンプレートで、テンプレートに注意)②、サブフォルダsrc内にmainを新規作成する.jsファイル(このファイルはプロジェクトエントリ主jsファイル)③、webpack-config.js
const path = require('path');

module.exports = {
  entry:{
    app:'./src/main.js' //       
  },
  output: {
    filename: 'bundle.js',//         ,dist            
    path: path.resolve(__dirname, 'dist')//         
  }
};

4、Webpack-dev-serverをインストールし、簡単なwebサーバを提供し、リアルタイムで再ロードできるなど


html-webpack-pluginのインストールはwebpackの機能を拡張するためにclean-webpack-pluginプラグインをインストールディレクトリの内容をクリアするためにもパッケージ化する前にこのプラグインを使用してdistディレクトリの下のファイルをクリアしようとします
npm install --save-dev webpack-dev-server
npm install --save-dev html-webpack-plugin
npm install --save-dev clean-webpack-plugin

5、


package.json
{
  "name": "amazing",
  "version": "1.0.0",
  "description": "    ",
  "main": "webpack.config.js",
  "scripts": {
    "test": "echo \"Error: no test specified\" && exit 1",
    "start": "webpack-dev-server --open --hot"
  },
  "keywords": [],
  "author": "",
  "license": "ISC",
  "devDependencies": {
    "clean-webpack-plugin": "^3.0.0",
    "html-webpack-plugin": "^3.2.0",
    "webpack": "^4.41.5",
    "webpack-cli": "^3.3.10",
    "webpack-dev-server": "^3.10.1"
  }
}

webpack.config.js
const path = require('path');
+const HtmlWebpackPlugin = require('html-webpack-plugin');
+const { CleanWebpackPlugin } = require('clean-webpack-plugin')

module.exports = {
     entry:{
        app:'./src/main.js' //       
     },
+    plugins: [
+        new HtmlWebpackPlugin({
+            template:'./public/index.html',//      dist     
+        }),
+        new CleanWebpackPlugin(),
+    ],
+    devServer: {
+        contentBase: './dist',
+        port: 8080
+    },
    output: {
        filename: 'bundle.js',//         ,dist            
        path: path.resolve(__dirname, 'dist')//         
    }
}

6、JavaScriptモジュールからCSSファイルをimportするには、module構成にstyle-loaderとcss-loaderをインストールして追加する必要があります。プロジェクトに画像、フォントファイルを導入できるように、module構成にfile-loaderをインストールして追加する必要があります。

npm install --save-dev style-loader css-loader
npm install --save-dev file-loader

webpack.config.js
const path = require('path');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const { CleanWebpackPlugin } = require('clean-webpack-plugin')

module.exports = {
    entry:{
        app:'./src/main.js' //       
    },
    plugins: [
        new HtmlWebpackPlugin({
            template:'./public/index.html',//      dist     
        }),
        new CleanWebpackPlugin(),
    ],
    devServer: {
        contentBase: './dist',
        port: 8080
    },
+   module: {
+       rules: [
+           {
+               test: /\.css$/,
+               use: [
+                   'vue-style-loader',
+                   'style-loader',
+                   'css-loader'
+               ]
+           },
+           {
+               test: /\.(jpg|png|svg|gif)$/,
+               use: [
+                   'file-loader'
+               ]
+           },
+           {
+               test: /\.(woff|woff2|eot|ttf|otf)$/,
+               use: [
+                   'file-loader'
+               ]
+           }
+       ]
+   },
    output: {
        filename: 'bundle.js',//         ,dist            
        path: path.resolve(__dirname, 'dist')//         
    }
}

7、多くの使いやすいコードはECMAScript 2015+バージョンの文法であるため、ブラウザは矢印関数などを認識できないため、babel関連のモジュールとプラグインをインストールして後方互換のJavaScript文法に変換する必要がある(ここではよく使われるものだけをインストールし、他のものを使用する場合は、自分でインストールし、構成する必要がある)

npm install --save-dev babel-loader
npm install --save-dev @babel/core @babel/cli @babel/preset-env
npm install --save-dev @babel/plugin-transform-arrow-functions
npm install --save-dev @babel/runtime @babel/plugin-transform-runtime

webpack.config.js
const path = require('path');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const { CleanWebpackPlugin } = require('clean-webpack-plugin');

module.exports = {
    entry:{
        app:'./src/main.js' //       
    },
    output: {
        filename: 'bundle.js',//         ,dist            
        path: path.resolve(__dirname, 'dist'),//         
    },
    plugins: [
        new HtmlWebpackPlugin({
            template:'./public/index.html',//      dist     
        }),
        new CleanWebpackPlugin(),
    ],
    devServer: {
        contentBase: './dist',
        port: 8080
    },
    module: {
        rules: [
            {
                test: /\.css$/,
                use: [
                    'vue-style-loader',
                    'style-loader',
                    'css-loader'
                ]
            },
            {
                test: /\.(jpg|png|svg|gif)$/,
                use: [
                    'file-loader'
                ]
            },
            {
                test: /\.(woff|woff2|eot|ttf|otf)$/,
                use: [
                    'file-loader'
                ]
            },
+           {
+               test: /\.js$/,
+               use: [
+                   'babel-loader'
+               ],
+               exclude: /node_modules/
+           },
        ]
    }
}

babel.config.js
module.exports = function (api) {
    api.cache(true);
  
    const presets = [
        '@babel/preset-env',
    ];
    const plugins = [
        '@babel/plugin-transform-arrow-functions',
        '@babel/plugin-transform-runtime'
    ];
  
    return {
      presets,
      plugins
    };
  }

二、VUE


一、vue関連パッケージのインストール

npm install vue --save
npm install --save-dev vue-loader vue-template-compiler

インストールsass(sassはCSSプリプロセッサで、使いやすく、個人の好みに応じてインストールできます)
npm install --save-dev sass-loader
npm install --save-dev node-sass

webpack.config.js
const path = require('path');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const { CleanWebpackPlugin } = require('clean-webpack-plugin');
+const VueLoaderPlugin = require('vue-loader/lib/plugin');

module.exports = {
    entry:{
        app:'./src/main.js' //       
    },
    plugins: [
        new HtmlWebpackPlugin({
            template:'./public/index.html',//      dist     
        }),
        new CleanWebpackPlugin(),
+        new VueLoaderPlugin()
    ],
    devServer: {
        contentBase: './dist',
        port: 8080
    },
    module: {
        rules: [
            {
                test: /\.css$/,
                use: [
                    'vue-style-loader',
                    'style-loader',
                    'css-loader'
                ]
            },
            {
                test: /\.(jpg|png|svg|gif)$/,
                use: [
                    'file-loader'
                ]
            },
            {
                test: /\.(woff|woff2|eot|ttf|otf)$/,
                use: [
                    'file-loader'
                ]
            },
            {
                test: /\.js$/,
                use: [
                    'babel-loader'
                ],
                exclude: /node_modules/
            },
+           {
+               test: /\.vue$/,
+               use: [
+                   'vue-loader'
+               ],
+           },
+           {
+               test:/\.scss$/,
+               use:[
+                   'style-loader',
+                   'css-loader',
+                   'sass-loader'
+               ]
+           },
        ]
    },
    output: {
        filename: 'bundle.js',//         ,dist            
        path: path.resolve(__dirname, 'dist')//         
    }
}

2、sassの使用は以下の通りである:①、外部スタイルを導入して使用する
import '../css/test.scss'

②、います.vueで使用
<style lang="scss">
    //sass    
</style>

3、サブフォルダsrcの下で新しいAppを作成する.vueファイルmain.js
import Vue from 'vue'
import App from './App.vue'

new Vue({
    el:'#app',
    render: h => h(App),
})

npm startを使用してプロジェクトを開始