You will notice that Webpack generates a JS file into which tag included <script>. This is a "linked" file. There is always a tag on the page <script>.
Webpack/Browserify/etc. do, JS JS <script>. :
<script src="jquery.js" type="text/javascript"></script>
<script src="app.js" type="text/javascript"></script>
... :
<script src="bundle.js" type="text/javascript"></script>
jQuery app.js bundle.js. Webpack , , jQuery app.js. :
import $ from 'jquery'
... ECMAScript 5:
var $ = require('jquery');
, jQuery, , 1) 2) .