Search code examples
javascriptdependency-managementbrowserifywebpackjspm

Does webpack allow to run my app without building like jspm?


I was just wondering about this. Can webpack work in the browser without doing any builds, like JSPM? Or is it the same as browserify? I looked at the official docs and found no mention of this.


Solution

  • It's a module bundler. So closer to Browserify. You can, however, set it up in a watch mode easily. That way it deals with the builds on the background while you develop and examine the result in the browser.