美文网首页API网关vue
Vue项目分环境打包,开发,生产和测试

Vue项目分环境打包,开发,生产和测试

作者: 晚饭总吃撑 | 来源:发表于2021-08-13 17:31 被阅读0次

    在使用vue开发项目的时候,由于开发环境,测试环境和生产环境的请求地址不同所以想在打包的时候分不同环境去打包,上网学习了一下,总结如下

    以下项目是使用官方vue-cli创建的vue2项目

    文件目录

    在package.json文件中默认是存在三个命令的

    "scripts": {
        "serve": "vue-cli-service serve",
        "build": "vue-cli-service build",
        "lint": "vue-cli-service lint"
    }
    

    server : 这个命令是用来启动本地开发环境的不必多讲(才思学浅我也多讲不了)
    build :这个命令是开发完需要发版的时候用来打包生产环境代码的
    lint :该命令是检测你写的代码有没有问题的,如果有语法错误会在控制台打印
    这三个命令只有开发环境和生产环境的打包命令,没有测试环境的命令,默认情况下生产环境对应的是"production",开发环境对应的是"development"

    创建环境变量的文件

    如文件目录图片上显示的,分别创建.env.development.env.production.env.test,test字段可以根据个人喜好命名,他是测试环境的配置文件,三个文件对应的内容如下:

    //.env.development文件内容
    NODE_ENV = "development"
    VUE_APP_API_URL = "111.111.111"
    VUE_APP_BASE_API = "111.111.111"
    
    //.env.production文件内容
    NODE_ENV = "production"
    VUE_APP_API_URL = "222.222.222"
    VUE_APP_BASE_API = "222.222.222"
    
    //.env.test文件内容
    NODE_ENV = "test"
    VUE_APP_API_URL = "333.333.333"
    VUE_APP_BASE_API = "333.333.333"
    

    添加测试打包命令

    在package.json文件中的script中添加命令

    "scripts": {
        "serve": "vue-cli-service serve",
        "build": "vue-cli-service build",
        "build.test": "vue-cli-service build --mode test",
        "lint": "vue-cli-service lint"
    }
    

    起初我不知道其中的原理,我猜测在执行命令yarn build.test时,他会自动去找--mode后面对应的文件,我命名test,他就会自动去找.env.test文件,然后把文件内的对应字段加到环境变量中,后来我查看了源码,验证了我的猜想

    当然这个环境变量名字是不能随便起的,我测试的时候只发现NODE_ENVVUE_APP_API_URLVUE_APP_BASE_API是能加进去的,其他的我随意起的名字就无法获取到,返回undefined
    我在代码中获取到的环境变量,都能正常打印

    mounted(){
        window.console.log(process.env.NODE_ENV)
        window.console.log(process.env.VUE_APP_API_URL)
        window.console.log(process.env.VUE_APP_BASE_API)
    }
    

    由于servebuild命令默认对应developmentproduction,所以他们会自动加载.env.development.env.production文件的内容。

    修改打包文件的目标文件夹名称

    在vue.config.js中配置打包目录

    module.exports = {
        outputDir:process.env.NODE_ENV==="test"?"dist_test":"dist"
    }
    

    这样执行yarn build.test命令的时候会打包到dist_test文件夹中,yarn build命令会打包到默认的dist文件夹中,防止文件夹命名冲突发生覆盖

    通过以上配置就可以打包生成开发环境,生产环境和测试环境的代码了,不同环境下的环境变量不同,就可以根据环境变量判断当前是什么环境,做哪些操作了

    测试

    我做测试是本地搭建了一个node服务,感兴趣的朋友可以查看这篇文章

    服务器代码目录
    在server.js中添加代码后执行node server
    var url = require("url"),
        fs = require("fs"),
        http = require("http"),
        path = require("path");
    http.createServer(function (req, res) {
        var pathname = __dirname + url.parse("/dist"+req.url).pathname;//资源指向dist目录
        if (path.extname(pathname) == "") {
            pathname += "/";
        }
        if (pathname.charAt(pathname.length - 1) == "/") {
            pathname += "index.html";
        }
        fs.exists(pathname, function (exists) {
            if (exists) {
                switch(path.extname(pathname)){
                    case ".html":
                        res.writeHead(200, {"Content-Type": "text/html"});
                        break;
                    case ".js":
                        res.writeHead(200, {"Content-Type": "text/javascript"});
                        break;
                    case ".css":
                        res.writeHead(200, {"Content-Type": "text/css"});
                        break;
                    case ".gif":
                        res.writeHead(200, {"Content-Type": "image/gif"});
                        break;
                    case ".jpg":
                        res.writeHead(200, {"Content-Type": "image/jpeg"});
                        break;
                    case ".png":
                        res.writeHead(200, {"Content-Type": "image/png"});
                        break;
                    default:
                        res.writeHead(200, {"Content-Type": "application/octet-stream"});
                }
                fs.readFile(pathname, function (err, data) {
                    res.end(data);
                });
            } else {
                res.writeHead(404, {
                    "Content-Type": "text/html"
                });
                res.end("<h1>404 Not Found</h1>");
            }
        });
    }).listen(3003);
    console.log("监听3003端口");
    

    然后把打包后的代码放到dist文件夹下,访问本地服务http://127.0.0.1:3003/index.html或者http://localhost:3003/index.html,打开控制台,结果如下

    相关文章

      网友评论

        本文标题:Vue项目分环境打包,开发,生产和测试

        本文链接:https://www.haomeiwen.com/subject/iaqjbltx.html