P08:node實現靜態服務器 ~ 建立項目

相關文章

終於開始靜態靜態服務器的相關學習!!!vue

建立一個項目


使用github進行項目搭建以及代碼管理node

  • 點擊新建 git

  • 填寫項目基本信息 es6

  • 這樣咱們就成功在github建立了一個項目成功建立 github

  • 下載到本地 npm

  • git clone XXXXXXXjson

介紹基本文件


  • .gitignore 是項目沒必要要文件不被git管理
    • 忽略文件的原則:
      • 忽略操做系統自動生成的文件,好比縮略圖等;
      • 忽略編譯生成的中間文件、可執行文件等,也就是若是一個文件是經過另外一個文件自動生成的,那自動生成的文件就不必放進版本庫,好比Java編譯產生的.class文件;
      • 忽略你本身的帶有敏感信息的配置文件,好比存放口令的配置文件。
    • 經常使用規則:
      • 起始位# 表明註釋
      • 匹配模式前 /表明項目根目錄
      • 匹配模式後 /表明目錄
      • 匹配模式前 !表明取反 ~ 經常使用與整個文件中只管理某一個或者幾個文件
      • * 表明匹配任意字符
      • ** 表明匹配多級目錄
      • ? 表明匹配一個字符
  • LICENSE 項目許可證協議,具體能夠查看內部說明
  • README.md 項目使用手冊,使用別人項目推薦先看此文件

其餘配置介紹


  • npmignore 和gitignore 語法一致,可是是用來限制npm包的文件
    • 須要注意的是,在向npm上傳包的時候,若是沒有設置 .npmignore 就會默認使用 .gitignore
    • 有時會出現沒有build包,由於其被.gitignore忽略,因此必定要注意設置好.npmignore
  • eitorconfig
    • 用來管理項目代碼風格
    • 一些基本配置
    # EditorConfig is awesome: https://EditorConfig.org
    
    # top-most EditorConfig file
    root = true
    
    # Unix-style newlines with a newline ending every file
    [*]
    end_of_line = lf
    insert_final_newline = true
    
    # Matches multiple files with brace expansion notation
    # Set default charset
    [*.{js,py}]
    charset = utf-8
    
    # 4 space indentation
    [*.py]
    indent_style = space
    indent_size = 4
    
    # Tab indentation (no size specified)
    [Makefile]
    indent_style = tab
    
    # Indentation override for all JS under lib directory
    [lib/**.js]
    indent_style = space
    indent_size = 2
    
    # Matches the exact files either package.json or .travis.yml
    [{package.json,.travis.yml}]
    indent_style = space
    indent_size = 2
    複製代碼

項目使用工具


  • ESlint
    • 這裏不得不提eslintrc.js的文件配置,這裏貼出相對詳細的一份
    module.exports = {
      root: true,
      parserOptions: {
        parser: 'babel-eslint',
        sourceType: 'module'
      },
      env: {
        browser: true,
        node: true,
        es6: true,
      },
      extends: ['eslint:recommended'],
    
      // add your custom rules here
      rules: {
        'accessor-pairs': 2,
        'arrow-spacing': [2, {
          'before': true,
          'after': true
        }],
        'block-spacing': [2, 'always'],
        'brace-style': [2, '1tbs', {
          'allowSingleLine': true
        }],
        'camelcase': [0, {
          'properties': 'always'
        }],
        'comma-dangle': [2, 'never'],
        'comma-spacing': [2, {
          'before': false,
          'after': true
        }],
        'comma-style': [2, 'last'],
        'constructor-super': 2,
        'curly': [2, 'multi-line'],
        'dot-location': [2, 'property'],
        'eol-last': 2,
        'eqeqeq': [2, 'allow-null'],
        'generator-star-spacing': [2, {
          'before': true,
          'after': true
        }],
        'handle-callback-err': [2, '^(err|error)$'],
        'indent': [2, 2, {
          'SwitchCase': 1
        }],
        'jsx-quotes': [2, 'prefer-single'],
        'key-spacing': [2, {
          'beforeColon': false,
          'afterColon': true
        }],
        'keyword-spacing': [2, {
          'before': true,
          'after': true
        }],
        'new-cap': [2, {
          'newIsCap': true,
          'capIsNew': false
        }],
        'new-parens': 2,
        'no-array-constructor': 2,
        'no-caller': 2,
        'no-console': 'off',
        'no-class-assign': 2,
        'no-cond-assign': 2,
        'no-const-assign': 2,
        'no-control-regex': 2,
        'no-delete-var': 2,
        'no-dupe-args': 2,
        'no-dupe-class-members': 2,
        'no-dupe-keys': 2,
        'no-duplicate-case': 2,
        'no-empty-character-class': 2,
        'no-empty-pattern': 2,
        'no-eval': 2,
        'no-ex-assign': 2,
        'no-extend-native': 2,
        'no-extra-bind': 2,
        'no-extra-boolean-cast': 2,
        'no-extra-parens': [2, 'functions'],
        'no-fallthrough': 2,
        'no-floating-decimal': 2,
        'no-func-assign': 2,
        'no-implied-eval': 2,
        'no-inner-declarations': [2, 'functions'],
        'no-invalid-regexp': 2,
        'no-irregular-whitespace': 2,
        'no-iterator': 2,
        'no-label-var': 2,
        'no-labels': [2, {
          'allowLoop': false,
          'allowSwitch': false
        }],
        'no-lone-blocks': 2,
        'no-mixed-spaces-and-tabs': 2,
        'no-multi-spaces': 2,
        'no-multi-str': 2,
        'no-multiple-empty-lines': [2, {
          'max': 1
        }],
        'no-native-reassign': 2,
        'no-negated-in-lhs': 2,
        'no-new-object': 2,
        'no-new-require': 2,
        'no-new-symbol': 2,
        'no-new-wrappers': 2,
        'no-obj-calls': 2,
        'no-octal': 2,
        'no-octal-escape': 2,
        'no-path-concat': 2,
        'no-proto': 2,
        'no-redeclare': 2,
        'no-regex-spaces': 2,
        'no-return-assign': [2, 'except-parens'],
        'no-self-assign': 2,
        'no-self-compare': 2,
        'no-sequences': 2,
        'no-shadow-restricted-names': 2,
        'no-spaced-func': 2,
        'no-sparse-arrays': 2,
        'no-this-before-super': 2,
        'no-throw-literal': 2,
        'no-trailing-spaces': 2,
        'no-undef': 2,
        'no-undef-init': 2,
        'no-unexpected-multiline': 2,
        'no-unmodified-loop-condition': 2,
        'no-unneeded-ternary': [2, {
          'defaultAssignment': false
        }],
        'no-unreachable': 2,
        'no-unsafe-finally': 2,
        'no-unused-vars': [2, {
          'vars': 'all',
          'args': 'none'
        }],
        'no-useless-call': 2,
        'no-useless-computed-key': 2,
        'no-useless-constructor': 2,
        'no-useless-escape': 0,
        'no-whitespace-before-property': 2,
        'no-with': 2,
        'one-var': [2, {
          'initialized': 'never'
        }],
        'operator-linebreak': [2, 'after', {
          'overrides': {
            '?': 'before',
            ':': 'before'
          }
        }],
        'padded-blocks': [2, 'never'],
        'quotes': [2, 'single', {
          'avoidEscape': true,
          'allowTemplateLiterals': true
        }],
        'semi': [2, 'never'],
        'semi-spacing': [2, {
          'before': false,
          'after': true
        }],
        'space-before-blocks': [2, 'always'],
        'space-before-function-paren': [2, 'never'],
        'space-in-parens': [2, 'never'],
        'space-infix-ops': 2,
        'space-unary-ops': [2, {
          'words': true,
          'nonwords': false
        }],
        'spaced-comment': [2, 'always', {
          'markers': ['global', 'globals', 'eslint', 'eslint-disable', '*package', '!', ',']
        }],
        'template-curly-spacing': [2, 'never'],
        'use-isnan': 2,
        'valid-typeof': 2,
        'wrap-iife': [2, 'any'],
        'yield-star-spacing': [2, 'both'],
        'yoda': [2, 'never'],
        'prefer-const': 2,
        'no-debugger': process.env.NODE_ENV === 'production' ? 2 : 0,
        'object-curly-spacing': [2, 'always', {
          objectsInObjects: false
        }],
        'array-bracket-spacing': [2, 'never']
      }
    }
    複製代碼
  • XXXignore
    • 不少工具或者依賴都會有本身獨特的ignore,大同小異,不在介紹

控制項目代碼質量


咱們知道能夠經過工具去規範咱們的項目代碼,讓團隊的代碼風格趨於一致,經常使用的工具就是eslint。可是有一個問題,我就不遵照了,不理會報錯,執意提交代碼。雖然說有提交審覈的步驟,可是能不能在源頭控制,不讓不規範的代碼提交到項目代碼管理上(好比git)呢? 答案是:YESbash

  • pre-commit
    • 雖然說咱們能夠本身去配置,來實現剛纔所說的需求,可是有工具爲啥不用呢
    • pre-commit 已經爲咱們作好了大部分配置工做
    • 只需在package.json以下配置便可實現
      "scripts": {
          "lint": "eslint --fix --ext .js,.vue src"
      },
      "pre-commit": [
          "lint"
      ],
      複製代碼
    • 在提交代碼前會自動執行lint ,若是出現不規範的地方,並且還不可以自動修復,就會終止commit

完事了,能夠擼代碼了服務器

相關文章
相關標籤/搜索