初探gulp,体会前端工程化

前言

本文章用gulp搭建一个react开发的自动化工程,体会一下前端工程化带来的乐趣css

准备

安装gulp

npm install --global gulp-cli # 全局安装复制代码

搭建基本的环境

cd your-project
npm init -y or yarn init -y
npm install --save-dev gulp # 项目依赖复制代码

安装基本的插件,之后会用到

yarn add gulp-sass fibers autoprefixer gulp-postcss gulp-html-replace gulp-rename browserify babelify vinyl-buffer gulp-uglify gulp-ejs gulp-webserver node-sass复制代码

项目目录

-- src
  |-- ios-switch
    |-- index.html
    |-- index.jsx
    |-- index.scss
-- gulpfile.js
-- template
  |-- index.ejs
  |-- index1.ejs复制代码

编译jsx文件

function jsxCompile(path, dirname) {  let templatePath = [];
  templatePath.push(path);
  browserifyJs({entries: templatePath,debug: true,transform: [
      babelify.configure({presets: ["@babel/preset-env", "@babel/preset-react"],
      }),
    ],
  })
    .bundle()
    .pipe(stream("index.js"))
    .pipe(buffer())
    .pipe(uglify())
    .pipe(
      rename({dirname: dirname,basename: "index",extname: ".js",
      })
    )
    .pipe(gulp.dest("./dist/"));
}复制代码

编译html文件

function htmlCompile(path, dirname) {
  gulp
    .src(path)
    .pipe(
      htmlReplace({css: "./index.css",js: "./index.js",
      })
    )
    .pipe(
      rename({
        dirname,basename: "index",extname: ".html",
      })
    )
    .pipe(gulp.dest("./dist/"));
}复制代码

编译html文件的目的是替换相应的东西html

html文件模板

<!DOCTYPE html><html lang="en">
  <head><meta charset="UTF-8" /><meta name="viewport" content="width=device-width, initial-scale=1.0" /><title><%= name %></title><script  crossorigin  src="https://unpkg.com/react@17/umd/react.production.min.js"></script><script  crossorigin  src="https://unpkg.com/react-dom@17/umd/react-dom.production.min.js"></script><script>  // 暴露全局对象  const React = window.React;      const ReactDOM = window.ReactDOM;      // 全局引用react 是每次打包jsx的时候都会从新打包,速度很慢,为了节约打包时间,cdn引入</script><!-- build:css --><!-- endbuild -->
  </head>
  <body><div id="app"></div>
  </body>
  <!-- build:js -->
  <!-- endbuild --></html>复制代码

编译scss文件

function sassCompile(path, dirname) {
  gulp
    .src(path)
    .pipe(
      sass({ fiber: Fiber, outputStyle: "compressed" }).on("error",
        sass.logError
      )
    )
    .pipe(postcss([autoprefixer()]))
    .pipe(
      rename({
        dirname,basename: "index",extname: ".css",
      })
    )
    .pipe(gulp.dest("./dist/"));
}复制代码

监听

咱们应该监听文件下文件的变化,来本身进行编译前端

const watcher = watch(
  ["./src/**/*.scss", "./src/**/*.html", "./src/**/*.jsx"],
  {}
);
watcher.on("change", function (pathL, stats) {  console.log(`File, ${pathL} change`);  let { pathName, dirname, extname } = getExtName(pathL);  if (extname === ".html") {console.log("htmlCompile");
    htmlCompile(pathL, dirname);
  } else if (extname === ".scss") {console.log("sassCompile");
    sassCompile(pathL, dirname);
  } else if (extname === ".jsx") {console.log("jsxCompile");
    jsxCompile(pathL, dirname);
  }
});复制代码

同时咱们应该在建立文件夹的时候自动生成文件夹下的内容,和生成路由文件node

watcher.on("add", function (router) {  console.log(router, "add watcher");  let { extname } = getExtName(router);  if (extname === ".html") {const { dir } = path.parse(router);const res = dir.split("\\");
    htmlCompile(router, res[1]);
    buildRouter();
  }
});const RouterWatch = watch("./src/*");
RouterWatch.on("addDir", function (router) {  console.log(`${router} change`);  const { name } = path.parse(router);
  gulp
    .src("./template/index1.ejs")
    .pipe(
      ejs({
        name,
      })
    )
    .pipe(
      rename({basename: "index",extname: ".html",
      })
    )
    .pipe(gulp.dest(router));
});// 生成路由function buildRouter() {  let routers = fs.readdirSync("./src");
  routers = routers.map((router) => {let template = path.join("./src", router);let stat = fs.lstatSync(template);if (stat.isDirectory()) {      return {link: "./" + router,fileName: "index.html",linkName: router,
      };
    }
  });
  routers = routers.filter((v) => v !== undefined);  return gulp
    .src("./template/index.ejs")
    .pipe(
      ejs({routes: routers,
      })
    )
    .pipe(
      rename({extname: ".html",
      })
    )
    .pipe(gulp.dest("./dist"));
}复制代码

自动启动服务

function server() {
  build();  // 考虑到 build的构建没有超过 100ms 延时1000ms 确保 build()构建完毕(可能会出错,可是没有想到更好地办法)
  setTimeout(() => {return gulp.src("./dist").pipe(
      webserver({port: 8001,open: true,fallback: "index.html",allowEmpty: true,livereload: {          enable: true,          filter: function (fileName) {if (fileName === "index.html") {              return true;
            } else {              return false;
            }
          },
        },
      })
    );
  }, 1000);
}function build() {
  buildRouter();
  htmlCompile("./src/ios-switch/index.html", "ios-switch");
  sassCompile("./src/ios-switch/index.scss", "ios-switch");
  jsxCompile("./src/ios-switch/index.jsx", "ios-switch");
}复制代码

完整代码

const gulp = require("gulp");const { watch } = gulp;const sass = require("gulp-sass");const Fiber = require("fibers");const autoprefixer = require("autoprefixer");const postcss = require("gulp-postcss");const htmlReplace = require("gulp-html-replace");const rename = require("gulp-rename");const path = require("path");const browserifyJs = require("browserify");const babelify = require("babelify");const stream = require("vinyl-source-stream");const buffer = require("vinyl-buffer");const uglify = require("gulp-uglify");const ejs = require("gulp-ejs");const fs = require("fs");const webserver = require("gulp-webserver");
sass.compiler = require("node-sass");// sass 编译function sassCompile(path, dirname) {
  gulp
    .src(path)
    .pipe(
      sass({ fiber: Fiber, outputStyle: "compressed" }).on("error",
        sass.logError
      )
    )
    .pipe(postcss([autoprefixer()]))
    .pipe(
      rename({
        dirname,basename: "index",extname: ".css",
      })
    )
    .pipe(gulp.dest("./dist/"));
}// html编译function htmlCompile(path, dirname) {
  gulp
    .src(path)
    .pipe(
      htmlReplace({css: "./index.css",js: "./index.js",
      })
    )
    .pipe(
      rename({
        dirname,basename: "index",extname: ".html",
      })
    )
    .pipe(gulp.dest("./dist/"));
}// jsx编译function jsxCompile(path, dirname) {  let templatePath = [];
  templatePath.push(path);
  browserifyJs({entries: templatePath,debug: true,transform: [
      babelify.configure({presets: ["@babel/preset-env", "@babel/preset-react"],
      }),
    ],
  })
    .bundle()
    .pipe(stream("index.js"))
    .pipe(buffer())
    .pipe(uglify())
    .pipe(
      rename({dirname: dirname,basename: "index",extname: ".js",
      })
    )
    .pipe(gulp.dest("./dist/"));
}const watcher = watch(
  ["./src/**/*.scss", "./src/**/*.html", "./src/**/*.jsx"],
  {}
);
watcher.on("change", function (pathL, stats) {  console.log(`File, ${pathL} change`);  let { pathName, dirname, extname } = getExtName(pathL);  if (extname === ".html") {console.log("htmlCompile");
    htmlCompile(pathL, dirname);
  } else if (extname === ".scss") {console.log("sassCompile");
    sassCompile(pathL, dirname);
  } else if (extname === ".jsx") {console.log("jsxCompile");
    jsxCompile(pathL, dirname);
  }
});

watcher.on("add", function (router) {  console.log(router, "add watcher");  let { extname } = getExtName(router);  if (extname === ".html") {const { dir } = path.parse(router);const res = dir.split("\\");
    htmlCompile(router, res[1]);
    buildRouter();
  }
});const RouterWatch = watch("./src/*");
RouterWatch.on("addDir", function (router) {  console.log(`${router} change`);  const { name } = path.parse(router);
  gulp
    .src("./template/index1.ejs")
    .pipe(
      ejs({
        name,
      })
    )
    .pipe(
      rename({basename: "index",extname: ".html",
      })
    )
    .pipe(gulp.dest(router));
});// 生成路由function buildRouter() {  let routers = fs.readdirSync("./src");
  routers = routers.map((router) => {let template = path.join("./src", router);let stat = fs.lstatSync(template);if (stat.isDirectory()) {      return {link: "./" + router,fileName: "index.html",linkName: router,
      };
    }
  });
  routers = routers.filter((v) => v !== undefined);  return gulp
    .src("./template/index.ejs")
    .pipe(
      ejs({routes: routers,
      })
    )
    .pipe(
      rename({extname: ".html",
      })
    )
    .pipe(gulp.dest("./dist"));
}function server() {
  build();  // 考虑到 build的构建没有超过 100ms 延时1000ms 确保 build()构建完毕(可能会出错,可是没有想到更好地办法)
  setTimeout(() => {return gulp.src("./dist").pipe(
      webserver({port: 8001,open: true,fallback: "index.html",allowEmpty: true,livereload: {          enable: true,          filter: function (fileName) {if (fileName === "index.html") {              return true;
            } else {              return false;
            }
          },
        },
      })
    );
  }, 1000);
}function build() {
  buildRouter();
  htmlCompile("./src/ios-switch/index.html", "ios-switch");
  sassCompile("./src/ios-switch/index.scss", "ios-switch");
  jsxCompile("./src/ios-switch/index.jsx", "ios-switch");
}function getExtName(router) {  let pathName = path.parse(router);  let dirname = pathName.dir.replace("src\\", "");  let extname = pathName.ext;  return {
    pathName,
    dirname,
    extname,
  };
}// exports.build = build;exports.default = server;复制代码

总结

项目还有不少BUG,好比gulp对删除文件夹会直接报错,没法进行全局异常捕获,但愿有大佬能够帮我解决一下react

相关文章
相关标签/搜索