|
|
|
|
|
by warfangle
4367 days ago
|
|
> Run it for every project you mean. Yep. Is that so bad? You know you can have multiple Terminal.app's open at once, right? > The nice thing about the web is that with a simple http server you can just start coding. The nice thing about browserify/node is that I can install node, clone my seed script, execute it, and just start coding. > Compile-steps take away that incredible advantage. While giving you the huge advantages of TDD/unit testing; the npm repository; being able to use the CommonJS module pattern... If you're just woodshedding a toy, or trying to learn - by all means, set up lighttpd and boot sublime and go at it. But if you're trying to build production-quality software... hone your craft; be better than a codemonkey. |
|
You don't need a compile step to do unit testing. Or even to use CommonJS for that matter.
> If you're just woodshedding a toy, or trying to learn - by all means, set up lighttpd and boot sublime and go at it. But if you're trying to build production-quality software... hone your craft; be better than a codemonkey.
You don't need a compile-step in development to create good software. Client-side loaders have all of the advantages of server-side loaders but you can also use them without a watch task. ES6 modules are just going to make it all easier.