摘要:有很強(qiáng)的自定義功能,插件庫(kù)很龐大,針對(duì)新語(yǔ)言插件更新很快,配合使用可以快速搭建適配語(yǔ)言的開(kāi)發(fā)環(huán)境。該命令依賴于包。源目錄路徑輸出路徑把所有東西放入緩存中,每次只編譯修改過(guò)的文件發(fā)生錯(cuò)誤時(shí)不會(huì)中斷的流程,同時(shí)觸發(fā)消息提示在命令行中輸入運(yùn)行。
Sublime有很強(qiáng)的自定義功能,插件庫(kù)很龐大,針對(duì)新語(yǔ)言插件更新很快,配合使用可以快速搭建適配語(yǔ)言的開(kāi)發(fā)環(huán)境。
1. babel-sublime支持ES6, React.js, jsx代碼高亮,對(duì) JavaScript, jQuery 也有很好的擴(kuò)展。關(guān)于 babel 的更多介紹可以看這里:為什么說(shuō)Babel將推動(dòng)JavaScript的發(fā)展
安裝PC:Ctrl+shift+p
Mac:Cmd+shift+p
打開(kāi)面板輸入babel安裝
配置打開(kāi).js, .jsx 后綴的文件;
打開(kāi)菜單view, Syntax -> Open all with current extension as... -> Babel -> JavaScript (Babel),選擇babel為默認(rèn) javascript 打開(kāi)syntax
2. 代碼審查(jsxhint或eslint) A. 使用eslint(SublimeLinter-eslint)es6正式發(fā)布后,加上facebook官方將react的編譯器轉(zhuǎn)成了babel,react+es6的簡(jiǎn)明寫(xiě)法成了開(kāi)發(fā)者首選,linter也由jshint向eslint轉(zhuǎn)換。airbnb的react開(kāi)發(fā)代碼規(guī)范也是得到許多開(kāi)發(fā)者的點(diǎn)贊,這里也使用這個(gè)比較大眾的語(yǔ)法規(guī)范。
安裝使用npm安裝:npm install --save-dev eslint-config-airbnb eslint-plugin-import eslint-plugin-react eslint-plugin-jsx-a11y eslint;
terminal(建議在開(kāi)發(fā)根目錄)輸入eslint --init, 按提示選擇后,生成.eslintrc:
當(dāng)然.eslintrc文件也可以手動(dòng)調(diào)整參數(shù):
{ "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
常用于編寫(xiě)默認(rèn)react語(yǔ)法的JSX 代碼審查,實(shí)時(shí)提示語(yǔ)法錯(cuò)誤, 幫助快速定位錯(cuò)誤點(diǎn).
安裝PC上ctrl+shift+p(MacCmd+shift+p)打開(kāi)面板輸入sublimeLinter-jsx安裝(依賴于 sublimeLinter)
安裝 node.js
安裝 jsxhint
install -g jsxhint
3. 修改 Emmet 兼容jsx 文件emmet 作為前端開(kāi)發(fā)必備插件之一非常方便快捷,默認(rèn)情況下使用快捷鍵ctrl+e可以自動(dòng)擴(kuò)展成適應(yīng)于react的className形式。而使用tab來(lái)默認(rèn)拓展則需要通過(guò)修改sublime快捷鍵,如下所示:
安裝PC上ctrl+shift+p(MacCmd+shift+p)打開(kāi)面板輸入emmet安裝
使用方法打開(kāi) preferences -> Key bindings - Users,把下面代碼復(fù)制到[]內(nèi)部。
{ "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" } ] },
注:以上規(guī)則來(lái)源于emmet-sublime文檔。
4. JsFormat 格式化 js 代碼jsformat 是 sublime 上 js 格式化比較好用的插件之一,通過(guò)修改它的e4x 屬性可以使它支持 jsx。
安裝PC上ctrl+shift+p(MacCmd+shift+p)打開(kāi)面板輸入JsFormat安裝.
使用打開(kāi)preferences -> Package Settings -> JsFormat -> Setting - Users,輸入以下代碼:
{ "e4x": true, // jsformat options "format_on_save": true, }
即可保存時(shí)自動(dòng)格式化,并支持 jsx 類型文件.
5. 編譯 jsx
使用babel-sublime
帶有編譯 jsx 的命令 babel build。使用 babel 編譯 jsx 也由 React 項(xiàng)目官方引用。該命令依賴于 node 包 babel。babel 同時(shí)也支持 ES6的新語(yǔ)法經(jīng)過(guò)編譯在瀏覽器中運(yùn)用。
npm install -g babel
在 sublime 中使用ctrl+shift+p打開(kāi)面板輸入babel transform自動(dòng)編譯成 react.js 文件
使用自動(dòng)化構(gòu)建工具(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 運(yùn)行
配合 BrowserSync 使用可以實(shí)時(shí)監(jiān)測(cè)改動(dòng)并同步刷新多平臺(tái)上得瀏覽器。
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")) //把所有東西放入緩存中,每次只編譯修改過(guò)的文件 .pipe(plumber({ //發(fā)生錯(cuò)誤時(shí)不會(huì)中斷 gulp 的流程,同時(shí)觸發(fā) 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 運(yùn)行。
或者使用 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 ..)打開(kāi) build 面板,選擇剛剛輸入的名稱,在這里是gulpBabel運(yùn)行。
文章版權(quán)歸作者所有,未經(jīng)允許請(qǐng)勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。
轉(zhuǎn)載請(qǐng)注明本文地址:http://specialneedsforspecialkids.com/yun/85948.html
摘要:更多資源請(qǐng)文章轉(zhuǎn)自月份前端資源分享關(guān)于的思考一款有趣的動(dòng)畫(huà)效果跨站資源共享之二最流行的編程語(yǔ)言能做什么到底什么是閉包的第三個(gè)參數(shù)跨域資源共享詳解阮一峰前端要給力之語(yǔ)句在中的值周愛(ài)民中國(guó)第二屆視頻花絮編碼規(guī)范前端工程師手冊(cè)奇舞周刊被忽視的 更多資源請(qǐng)Star:https://github.com/maidishike... 文章轉(zhuǎn)自:https://github.com/jsfron...
摘要:主要是針對(duì)語(yǔ)法的,用來(lái)快速編寫(xiě)組件中的部分。配置該插件不需要額外配置,在打開(kāi)或后綴的文件,直接選擇為對(duì)應(yīng)的語(yǔ)法就可以了。是上格式化比較好用的插件之一,通過(guò)修改它的屬性可以使它支持。配置打開(kāi)菜單,將下面代碼貼進(jìn)去保存。 主要是針對(duì)jsx語(yǔ)法的,用來(lái)快速編寫(xiě)組件中的html部分。 安裝 command+shift+p -> install package -> 對(duì)應(yīng)的模塊名稱 Emmet ...
平日學(xué)習(xí)接觸過(guò)的網(wǎng)站積累,以每月的形式發(fā)布。2017年以前看這個(gè)網(wǎng)址:http://www.kancloud.cn/jsfron... 03月份前端資源分享 1. Javascript 175453545 Redux compose and middleware 源碼分析 深入 Promise(二)——進(jìn)擊的 Promise Effective JavaScript leeheys blog -...
平日學(xué)習(xí)接觸過(guò)的網(wǎng)站積累,以每月的形式發(fā)布。2017年以前看這個(gè)網(wǎng)址:http://www.kancloud.cn/jsfron... 03月份前端資源分享 1. Javascript 175453545 Redux compose and middleware 源碼分析 深入 Promise(二)——進(jìn)擊的 Promise Effective JavaScript leeheys blog -...
閱讀 2457·2019-08-30 15:53
閱讀 2572·2019-08-29 13:11
閱讀 2653·2019-08-29 12:45
閱讀 3486·2019-08-29 12:41
閱讀 2326·2019-08-26 10:14
閱讀 2154·2019-08-23 14:39
閱讀 2314·2019-08-23 12:38
閱讀 3378·2019-08-23 12:04