Skip to content

Instantly share code, notes, and snippets.

@mihkels
Last active December 30, 2016 10:06
Show Gist options
  • Save mihkels/9620edf7fd6ca9e4de853ae5fff68f75 to your computer and use it in GitHub Desktop.
Save mihkels/9620edf7fd6ca9e4de853ae5fff68f75 to your computer and use it in GitHub Desktop.
Browserify ES6 importing Bootstrap JavaScript
// Importing jQuery in ES6 style
import $ from "jquery";
// We need to expose jQuery as global variable
window.jQuery = window.$ = $;
// ES6 import does not work it throws error: Missing jQuery
// using Node.js style import works without problems
require('bootstrap');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment