欢迎来到福编程网,本站提供各种互联网专业知识!

Node.js如何自动审核团队的代码

发布时间:2016-07-20 作者:投稿daisy 来源:转载
在项目开发中,统一团队的代码风格很重要,本文介绍如何用Node.js来自动审核,来提高您的开发速度。

前言

在团队开发中,无论是写前端(js,css,html) ,还是后端 ,我们常常需要解决一个问题:如何统一团队代码风格。 这篇文章主要是使用pre-git , eslint , js-beautify 实现代码风格控制。

下面分别介绍这三个工具和使用方式:

pre-git

该工具能实现git hook的功能,在git的流程中插入一些自定义行为,例如commit之前执行代码检测,如果不通过则报错。

eslint

代码格式审核工具,可以随意组合配置各种风格,用于组成团队的代码统一规范。

js-beautiful

js代码整理、美化工具。

然后这三个工具互相配合就形成了以下效果:

1.项目组长定义好eslint的代码规范。

2.使用pre-git在commit之前运行eslint代码监测和js-beautiful代码美化

3.如果通过则自动"git add ." ,最后允许push。

实现

一:npm安装上述工具

$ npm install eslint js-beautify pre-git --save-dev

二:工具的配置

在根目录新建.eslintrc.json文件,并且把规范配置好,一下给一个精简版:

注意:如需更多检测,请到eslint官网查看

代码
  1. {
  2. "rules": {
  3. "comma-dangle": ["error", "never"],
  4. "arrow-body-style": ["warn", "always"],
  5. "no-const-assign": ["error"]
  6. },
  7. "parserOptions": {
  8. "ecmaVersion": 6
  9. }
  10. }

因测试,bash 中使用js-beautiful递归多层文件的时候总出现错误,所以由一脚本来进行代码美化:

beatufyjs.js

代码
  1. const fs = require( 'fs' );
  2. const path = require( 'path' );
  3. const child_process = require( 'child_process' );
  4. for( let arg of process.argv.splice( 2 ) ) {
  5. let pathName = path.join( process.cwd(),arg );
  6. if( isFile( path.join( process.cwd(),arg ) ) ) {
  7. child_process.exec( `./node_modules/js-beautify/js/bin/js-beautify.js -P -E -j -a ${pathName} -r` , function( error, msg, stderr ) {
  8. console.log( msg.replace('n','') );
  9. } );
  10. } else {
  11. read_dir( pathName );
  12. }
  13. }
  14. function read_dir( dir ){
  15. let files = fs.readdirSync( dir );
  16. for( let file of files ) {
  17. let pathName = path.join( dir,file );
  18. if( isFile( pathName ) ) {
  19. child_process.exec( `./node_modules/js-beautify/js/bin/js-beautify.js -P -E -j -a ${pathName} -r` , function( error, msg, stderr ) {
  20. console.log( msg.replace( 'n','') );
  21. } );
  22. } else {
  23. read_dir( pathName );
  24. }
  25. }
  26. }
  27. function isFile( path ){
  28. return exists( path ) && fs.statSync( path ).isFile();
  29. }
  30. function exists( path ){
  31. return fs.existsSync( path ) || path.existsSync( path );
  32. }

三:使用上述工具

在package.json文件中配置:

代码
  1. {
  2. "name": "demo",
  3. "version": "1.0.0",
  4. "description": "",
  5. "main": "index.js",
  6. "scripts": {
  7. "lint": "./node_modules/.bin/eslint routes runtime utils libs --quiet",
  8. "lint-fix": "./node_modules/.bin/eslint routes runtime utils libs --quiet --fix",
  9. "js-beautify": "node --harmony --use_strict ./bin/beatufyjs.js libs middlewares index.js "
  10. },
  11. "author": "kelvv",
  12. "license": "ISC",
  13. "config": {
  14. "pre-git": {
  15. "commit-msg": "",
  16. "pre-commit": [
  17. "npm run lint-fix",
  18. "npm run js-beautify",
  19. "git add ."
  20. ],
  21. "pre-push": [],
  22. "post-commit": [],
  23. "post-checkout": [],
  24. "post-merge": []
  25. }
  26. },
  27. "devDependencies": {
  28. "eslint": "^2.12.0",
  29. "js-beautify": "^1.6.3",
  30. "pre-git": "^3.9.1"
  31. }
  32. }

此时当你修改其中一个文件,然后"git add && git commit -m 'msg' "的时候,pre-commit中的三条命令就会执行,如果中途有错就会停止提交,修改完毕后再继续提交。

有一点需要注意的是,有的格式问题不足以报错的话,改方法会自动修改优化代码,并且自动添加修改,最后一步,执行:git push即可!可以结合单元测试,更佳

总结

以上就是为大家整理的如何用Node.js自动审核团队的代码的全部内容,有需要的可以进行参考学习。

相关推荐

返回顶部