- Learn Type:Driven Development
- Yawar Amin Kamon Ayeva
- 217字
- 2021-07-02 14:41:25
Workflow
To get the most from this chapter, we will set up a comfortable edit-compile workflow. We recommend placing two windows side-by-side in your editor. VSCode supports this functionality with the View | Split Editor command. On one side, load a Reason source file; on the other side, load the JavaScript output file (once it is initially compiled). Then in a terminal, run the following command:
bsb -w
The preceding command starts a build in watch mode, which automatically recompiles any parts of a project that are affected whenever you change any source code. In fact, watch mode is smart enough to also remove an outdated JavaScript output file whenever its corresponding Reason source file is deleted. The editor will also auto-reload the compiled JavaScript file whenever you save a Reason source file.
In VSCode, you can also open a terminal session directly below the files using the View | Integrated Terminal command and run bsb -w to get a single integrated view of your entire workflow. This way, when there are compile errors, you won't have to switch windows to see them. Of course, you may prefer to work with two monitors and keep the terminal and compiler running on another screen so you don't have to switch windows—that's feasible, too.
- Java范例大全
- Delphi程序設計基礎:教程、實驗、習題
- 數據結構(Python語言描述)(第2版)
- 機器人Python青少年編程開發實例
- Mastering Kali Linux for Web Penetration Testing
- Learning Laravel 4 Application Development
- Mastering AndEngine Game Development
- HTML5+CSS3網站設計基礎教程
- AppInventor實踐教程:Android智能應用開發前傳
- Visual Basic程序設計實驗指導(第二版)
- Getting Started with Eclipse Juno
- Solr Cookbook(Third Edition)
- Julia High Performance(Second Edition)
- Mastering SciPy
- Selenium WebDriver Practical Guide