bundle-collapser

convert bundle paths to IDs to save bytes in browserify bundles

  • 所有者: browserify/bundle-collapser
  • 平台:
  • 許可證: Other
  • 分類:
  • 主題:
  • 喜歡:
    0
      比較:

Github星跟蹤圖

bundle-collapser

convert bundle paths to IDs to save bytes in browserify bundles

build status

example

The easiest way to use bundle-collapser is from the plugin:

$ browserify -p bundle-collapser/plugin main.js

Instead of the usual output which would have the original require('./foo.js')
style calls in it, the output just has require(2) style paths, which minifies
more compactly:

(function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(require,module,exports){
module.exports = function (n) { return n * 5 }

},{}],2:[function(require,module,exports){
var bar = require(1);

module.exports = function (n) { return bar(n+1) }

},{}],3:[function(require,module,exports){
var foo = require(2);
var bar = require(1);

console.log(foo(5) * bar(2));

},{}]},{},[3]);

api

You can use bundle-collapser from the api too:

var collapse = require('bundle-collapser');
var fs = require('fs');

var src = fs.readFileSync(__dirname + '/bundle.js', 'utf8');
collapse(src).pipe(process.stdout);

usage

There is also a command-line program included in this distribution:

usage: bundle-collapser {FILE, -} {OPTIONS}

  Collapse a browser-pack/browserify bundle from STDIN or a FILE.

OPTIONS:

  -h --help  Show this message.

methods

var collapse = require('bundle-collapser')

var stream = collapse(src)

Return a readable stream of output from
browser-pack with the input source
string src converted to have its require() calls collapsed down to the
dependency targets in the "deps" fields from the unpacking.

install

With npm, to get the library do:

npm install bundle-collapser

and to get the command-line program do:

npm install -g bundle-collapser

license

MIT

主要指標

概覽
名稱與所有者browserify/bundle-collapser
主編程語言JavaScript
編程語言JavaScript (語言數: 1)
平台
許可證Other
所有者活动
創建於2014-07-25 02:02:54
推送於2024-12-21 10:00:35
最后一次提交2020-03-09 22:29:12
發布數9
最新版本名稱1.3.0 (發布於 )
第一版名稱1.0.0 (發布於 )
用户参与
星數193
關注者數6
派生數21
提交數35
已啟用問題?
問題數18
打開的問題數9
拉請求數5
打開的拉請求數2
關閉的拉請求數4
项目设置
已啟用Wiki?
已存檔?
是復刻?
已鎖定?
是鏡像?
是私有?