在windows命令行下安裝和使用babel(es6to5)


在自己的目錄下新建一個babel-test/目錄
進入這個目錄
1. 安裝babel命令和轉換庫:
     npm install babel-cli
     npm install babel-preset-es2015
 
2. 在當前目錄下新建文件夾: .babelrc
在文件夾中寫入:
{
  "presets": ["./babel-preset-es2015"]
}
 
3. 新建一個文件example.es6,內容如下:
import $ from 'jquery'
 
export class MyClass {
    constructor(name = 'nobody') {
        this.name = name;
    }
    getMyName() {
        return this.name;
    }
}
 
4. 安裝缺少的相關庫
npm install ansi-regex ansi-styles escape-string-regexp has-ansi left-pad number-is-nan strip-ansi supports-color line-numbers
執行代碼:
babel example.es6 -o example.js
如果還報錯提示缺少模塊:xxx-xxx
則安裝它
npm install xxx-xxx
 
5. 大功告成
然后,在當前目錄下,通過babel命令將es6代碼轉換成es5的代碼了!
文件轉化示例:
babel example.es6 -o example.js
文件夾轉化示例:
babel -d example-es5/ example-es6
 
2015.12.1 yaoel
我的聯系方式:yaoel@outlook.com
 
參考:


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM