Sublime Text 3 搭建 React.js 開發環境

Sublime有很強的自定義功能,插件庫很龐大,針對新語言插件更新很快,配合使用能夠快速搭建適配語言的開發環境。javascript

1. babel-sublime

支持ES6, React.js, jsx代碼高亮,對 JavaScript, jQuery 也有很好的擴展。關於 babel 的更多介紹能夠看這裏:爲何說Babel將推進JavaScript的發展php

安裝

  • PC:Ctrl+shift+pcss

  • Mac:Cmd+shift+phtml

打開面板輸入babel安裝前端

配置

  1. 打開.js, .jsx 後綴的文件;java

  2. 打開菜單viewSyntax -> Open all with current extension as... -> Babel -> JavaScript (Babel),選擇babel爲默認 javascript 打開syntaxnode

2. 代碼審查(jsxhint或eslint)

A. 使用eslint(SublimeLinter-eslint)

es6正式發佈後,加上facebook官方將react的編譯器轉成了babelreact+es6的簡明寫法成了開發者首選,linter也由jshint向eslint轉換。airbnbreact開發代碼規範也是獲得許多開發者的點贊,這裏也使用這個比較大衆的語法規範。react

安裝

  1. 使用npm安裝:npm install --save-dev eslint-config-airbnb eslint-plugin-import eslint-plugin-react eslint-plugin-jsx-a11y eslint;git

  2. terminal(建議在開發根目錄)輸入eslint --init, 按提示選擇後,生成.eslintrc:
    圖片描述es6

固然.eslintrc文件也能夠手動調整參數:

{
  "extends": "airbnb",
  "env": {
    "browser": true,
    "jQuery": true,
    "node": true
  },
 "plugins": [
    "react"
 ], 
  "globals": {
    "jQuery": 1
  },
  "rules": {
    "no-var": 0,
    comma-dangle: ["error", "never"]
  }
}

B. 使用sublimeLinter-jsxhint

經常使用於編寫默認react語法的JSX 代碼審查,實時提示語法錯誤, 幫助快速定位錯誤點.

圖片描述

安裝

  1. PC上ctrl+shift+p(MacCmd+shift+p)打開面板輸入sublimeLinter-jsx安裝(依賴於 sublimeLinter)

  2. 安裝 node.js

  3. 安裝 jsxhint

  4. install -g jsxhint

3. 修改 Emmet 兼容jsx 文件

emmet 做爲前端開發必備插件之一很是方便快捷,默認狀況下使用快捷鍵ctrl+e能夠自動擴展成適應於react的className形式。而使用tab來默認拓展則須要經過修改sublime快捷鍵,以下所示:

圖片描述

安裝

PC上ctrl+shift+p(MacCmd+shift+p)打開面板輸入emmet安裝

使用方法

打開 preferences -> Key bindings - Users,把下面代碼複製到[]內部。

{
  "keys": ["tab"], 
  "command": "expand_abbreviation_by_tab", 

  // put comma-separated syntax selectors for which 
  // you want to expandEmmet abbreviations into "operand" key 
  // instead of SCOPE_SELECTOR.
  // Examples: source.js, text.html - source
  "context": [
    {
      "operand": "source.js", 
      "operator": "equal", 
      "match_all": true, 
      "key": "selector"
    }, 

    // run only if there's no selected text
    {
      "match_all": true, 
      "key": "selection_empty"
    },

    // don't work if there are active tabstops
    {
      "operator": "equal", 
      "operand": false, 
      "match_all": true, 
      "key": "has_next_field"
    }, 

    // don't work if completion popup is visible and you
    // want to insert completion with Tab. If you want to
    // expand Emmet with Tab even if popup is visible -- 
    // remove this section
    {
      "operand": false, 
      "operator": "equal", 
      "match_all": true, 
      "key": "auto_complete_visible"
    }, 
    {
      "match_all": true, 
      "key": "is_abbreviation"
    }
  ]
},

注:以上規則來源於emmet-sublime文檔

4. JsFormat 格式化 js 代碼

jsformat 是 sublime 上 js 格式化比較好用的插件之一,經過修改它的e4x 屬性可使它支持 jsx。

安裝

PC上ctrl+shift+p(MacCmd+shift+p)打開面板輸入JsFormat安裝.

使用

打開preferences -> Package Settings -> JsFormat -> Setting - Users,輸入如下代碼:

{
  "e4x": true,
  // jsformat options
  "format_on_save": true,
}

便可保存時自動格式化,並支持 jsx 類型文件.

5. 編譯 jsx

  • 使用babel-sublime
    帶有編譯 jsx 的命令 babel build。使用 babel 編譯 jsx 也由 React 項目官方引用。該命令依賴於 node 包 babel。babel 同時也支持 ES6的新語法通過編譯在瀏覽器中運用。

    npm install -g babel

在 sublime 中使用ctrl+shift+p打開面板輸入babel transform自動編譯成 react.js 文件

  • 使用自動化構建工具(gulp|grunt 等)
    gulp 爲例(依賴 gulp,需提早安裝):

    npm install gulp-babel
    /**
     * babel
     */
    var gulp = require('gulp'),
      babel = require('gulp-babel');
    gulp.task('babel', function() {
      return gulp.src('./src/**/*.jsx')
        .pipe(babel())
        .pipe(gulp.dest('./dist'));
    });

    在命令行中輸入 gulp babel 運行

    配合 BrowserSync 使用能夠實時監測改動並同步刷新多平臺上得瀏覽器。

    npm install gulp-babel gulp-plumber gulp-notify gulp-cached browser-sync run-sequence
/**
 *  babel
 */
var gulp = require('gulp'),
  babel = require('gulp-babel'),
  bs = require('browser-sync').create(),
  reload = bs.reload,
  runSequence = require('run-sequence').use(gulp),
  src = 'src', //源目錄路徑
  dist = 'dist'; //輸出路徑
gulp.task('babel', function() {
  var onError = function(err) {
    notify.onError({
      title: "Gulp",
      subtitle: "Failure!",
      message: "Error: <%= error.message %>",
      sound: "Beep"
    })(err);
  };

  return gulp.src(src + '/**/*.jsx')
    .pipe(cached('react')) //把全部東西放入緩存中,每次只編譯修改過的文件
    .pipe(plumber({ //發生錯誤時不會中斷 gulp 的流程,同時觸發 notify 消息提示
      errorHandler: onError
    }))
    .pipe(babel())
    .pipe(gulp.dest(dist));
});

// Start the server
gulp.task('bs', function() {
  var files;

  files = [
    src + '/**/*.+(html|php|js|css|png|jpg|svg|gif)'
  ];

  bs.init(files, {
   server: {
     baseDir: src,
   }
  });
});

gulp.task('server', ['babel','bs'], function() {
  gulp.watch(src + '/**/*.jsx', function() {
    runSequence('babel', reload);
    });
  })

在命令行中輸入 gulp server 運行。

或者使用 sublime 自帶的 build 工具,選擇Tools -> Build System -> New Build System
輸入:

{
    "shell_cmd": "gulp server --cwd $file_path"
}

並保存爲 gulpBabel.sublime-build(名稱隨意,保持.sublime-build後綴名),存放到Packages - Users文件夾裏面,在 sublime 中使用ctrl+shift+b(或Tools -> Build With ..)打開 build 面板,選擇剛剛輸入的名稱,在這裏是gulpBabel運行。

相關文章
相關標籤/搜索