简体   繁体   中英

Using WebStorm for ECMAScript 2015 development without my own gulp/grunt/webpack scripting?

Is it possible to use WebStorm for developing HTML+JS projects WITHOUT writing my own (more and more) complex configuration scripts for babel/gulp/grunt/webpack or similar tools?

I don't need complex frameworks (like Angular or React), but importing multiple ECMAScript 2015 files, debugging and deployment should still be possible.

I found several Settings in WebStorm 2016.1.3 , and they seem to integrate some tools, but they do not seem to (automatically) establish a working development system comparable with Visual Studio?

EDIT: I would like to see my web pages in chrome and debug JS in WebStorm.

current browser and nodejs not full support es2015 feactures, you can use polifil like babel and for using systemjs dependancies (in browser for create bundle) you need use webpack. You can use pure javascript without any dependancies if feactures is supported, refer to https://kangax.github.io/compat-table/es6/

You don't need gulp/grunt/etc.

WebStorm supports ES2015 just fine, and even some ES2016 features (eg async/await) . You don't even need to configure a file watcher. Just define the "node" executable to be babel-node .

ES2016的运行/调试配置

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM