Top "Browserify" questions

Browserify is a tool that packages Node.

Configure a generic jQuery plugin with Browserify-shim?

I'm using browserify-shim and I want to use a generic jQuery plugin. I have looked over the Browserify-shim docs multiple …

javascript configuration browserify
How to include node_modules in a separate browserify vendor bundle

I am trying to convert an AngularJS app to use browserify. I have installed all my bower packages in node_…

node.js angularjs browserify
Using Node.js modules in HTML

I have the following Node.js project (which is a Minimal Working Example of my problem): module1.js: module.exports = …

javascript node.js require smooth browserify
Shim a jQuery plugin with browserify

Hi I'm using the grunt browserify task to setup my code, I have shimmed in jQuery and I'm now trying …

javascript jquery gruntjs browserify shim
babelify 6 with browserify and the es2015 preset is not working

I am attempting to use the new babel release, and while trying to use the es2015 preset babel doesn't seem …

browserify babeljs
React saids Minified React error even it is development mode

I'm using browserify and babel to transpile & bundle my script. The problem is when I'm using React 16, it gives …

javascript reactjs browserify transpiler
browserify cannot find module 'react'

I have this bit of react code called main.js: var React = require('react'); var Comment = React.createClass({ render: function(){ …

reactjs browserify reactify
Compile an npm module into a single file, without dependencies

I'm trying to compile an the uncss npm module into a single .js file that is suitable for compilation by …

javascript ruby node.js npm browserify
How do I exclude the "require('react')" from my Browserified bundle?

I'm using Browserify to bundle a ReactJS application. All my components include a require("react") at the top. This causes …

javascript reactjs browserify
How to import a npm package in an angular2 component?

I'm trying to learn the ropes of ng2 and the depedency injection system is killing me. I'm using the ng …

angular webpack browserify systemjs