国产xxxx99真实实拍_久久不雅视频_高清韩国a级特黄毛片_嗯老师别我我受不了了小说

資訊專欄INFORMATION COLUMN

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

Big_fat_cat / 3420人閱讀

摘要:有很強的自定義功能,插件庫很龐大,針對新語言插件更新很快,配合使用可以快速搭建適配語言的開發環境。該命令依賴于包。源目錄路徑輸出路徑把所有東西放入緩存中,每次只編譯修改過的文件發生錯誤時不會中斷的流程,同時觸發消息提示在命令行中輸入運行。

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

1. babel-sublime

支持ES6, React.js, jsx代碼高亮,對 JavaScript, jQuery 也有很好的擴展。關于 babel 的更多介紹可以看這里:為什么說Babel將推動JavaScript的發展

安裝

PC:Ctrl+shift+p

Mac:Cmd+shift+p

打開面板輸入babel安裝

配置

打開.js, .jsx 后綴的文件;

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

2. 代碼審查(jsxhint或eslint) A. 使用eslint(SublimeLinter-eslint)

es6正式發布后,加上facebook官方將react的編譯器轉成了babelreact+es6的簡明寫法成了開發者首選,linter也由jshint向eslint轉換。airbnb的react開發代碼規范也是得到許多開發者的點贊,這里也使用這個比較大眾的語法規范。

安裝

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

terminal(建議在開發根目錄)輸入eslint --init, 按提示選擇后,生成.eslintrc:

當然.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 代碼審查,實時提示語法錯誤, 幫助快速定位錯誤點.

安裝

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

安裝 node.js

安裝 jsxhint

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運行。

文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。

轉載請注明本文地址:http://m.specialneedsforspecialkids.com/yun/85948.html

相關文章

  • 4月份前端資源分享

    摘要:更多資源請文章轉自月份前端資源分享關于的思考一款有趣的動畫效果跨站資源共享之二最流行的編程語言能做什么到底什么是閉包的第三個參數跨域資源共享詳解阮一峰前端要給力之語句在中的值周愛民中國第二屆視頻花絮編碼規范前端工程師手冊奇舞周刊被忽視的 更多資源請Star:https://github.com/maidishike... 文章轉自:https://github.com/jsfron...

    jsdt 評論0 收藏0
  • Sublime Text3 React開發常用插件

    摘要:主要是針對語法的,用來快速編寫組件中的部分。配置該插件不需要額外配置,在打開或后綴的文件,直接選擇為對應的語法就可以了。是上格式化比較好用的插件之一,通過修改它的屬性可以使它支持。配置打開菜單,將下面代碼貼進去保存。 主要是針對jsx語法的,用來快速編寫組件中的html部分。 安裝 command+shift+p -> install package -> 對應的模塊名稱 Emmet ...

    Yangder 評論0 收藏0
  • 2017年3月份前端資源分享

    平日學習接觸過的網站積累,以每月的形式發布。2017年以前看這個網址:http://www.kancloud.cn/jsfron... 03月份前端資源分享 1. Javascript 175453545 Redux compose and middleware 源碼分析 深入 Promise(二)——進擊的 Promise Effective JavaScript leeheys blog -...

    ermaoL 評論0 收藏0
  • 2017年3月份前端資源分享

    平日學習接觸過的網站積累,以每月的形式發布。2017年以前看這個網址:http://www.kancloud.cn/jsfron... 03月份前端資源分享 1. Javascript 175453545 Redux compose and middleware 源碼分析 深入 Promise(二)——進擊的 Promise Effective JavaScript leeheys blog -...

    kamushin233 評論0 收藏0

發表評論

0條評論

Big_fat_cat

|高級講師

TA的文章

閱讀更多
最新活動
閱讀需要支付1元查看
<