-
Just to remember it:
```
npm install browserify -g
browserify index.js > apelles.js
```
-
Hi,
This is a request which I think would make a great feature to this very useful plugin.
Could you optionally expose browserify's debug option, this would allow users to enable source maps and…
-
[package.zip](https://github.com/substack/node-browserify/files/470294/package.zip)
In a specific situation (when I try to browserify my jasmine tests), some of the modules marked as external (like re…
Liero updated
7 years ago
-
reactのような外部ライブラリを、importしても、外読みにしても使えるようにしたい。
browserifyを使って下記のようにしてとりあえず実現できた。
``` js
var browserify = require('browserify');
var source = require('vinyl-source-stream');
gulp.task('build-example'…
-
If it was simply `state`, `collection`, and `view` (similar to backbone), then it would be much easier to grok. You would also have to throw in `browserify`, but perhaps just leave it like that.
`brow…
-
The buffer implementation is a lot of code and http-browserify does not really need it to work. It is only needed for `auth` parameter to bas64 encode it.
Could it be document that the `auth` paramet…
-
I'm attempting to pass templateSettings via [grunt-browserify](https://github.com/jmreidy/grunt-browserify#transform). My `Gruntfile` looks like:
``` javascript
var template_opts = {
interpolate…
-
作为公司里唯一的前端,代码组织方式一直是我在考虑的事情,而文章的标题就是我一步步实践过来的路程。
最开始的时候,我毫无例外的使用最普遍的 `` 方式加载代码,我做的网页看起来就像这样:
``` html
```
就像大多数人做的那样,整个网站都用到的 style 与 script 放在最上面,某些页面之间公用的文件次之,最后是单个页面用到的文件。
后来我发现,这样做会有一…
-
Vulnerable Library - jquery-1.7.1.min.js
JavaScript library for DOM operations
Library home page: https://cdnjs.cloudflare.com/ajax/libs/jquery/1.7.1/jquery.min.js
Path to dependency file: /app/comp…
-
my main.js just import the library:
`var BCSocket = require('browserchannel').BCSocket;`
I compile file with gulpfile below
```
var gulp = require('gulp'),
browserify = require('browserify'),
de…