Node js - Bundler for http2

Viewed 445

I'm currently using babel to transform es6 code to es5 and browserify to bundle it to use it in the browser. Now I've began to using a http2 server (Nginx).

Http2 is more effective when it can load multiple small files instead of one big bundle.

How to best serve multiple js files instead of one big bundle?

2 Answers
Related