When programming there is a workflow that works like:
- Change a file and save it.
- The a compiler or interpreter.
- Look at the result.
But there is also a workflow that goes like this: (actually it is similar to working with this stack overflow question Window I am typing into)
- Start a program that watches a directory of files for changes.
- Change a file and save it.
- The results immediately appear as the program runs the compiler and updates the program (usually in a browser) immediately.
I'm looking for what the second workflow is generally referred to as.