UNPKG

9.98 kBMarkdownView Raw
1[![Build Status](https://travis-ci.org/Polymer/polymer-bundler.svg?branch=master)](https://travis-ci.org/Polymer/polymer-bundler)
2[![NPM version](http://img.shields.io/npm/v/polymer-bundler.svg)](https://www.npmjs.com/package/polymer-bundler)
3
4# Polymer Bundler
5
6polymer-bundler is a library for packaging project assets for production to minimize network round-trips.
7
8
9## Relationship to Polymer CLI
10
11The [Polymer CLI](https://github.com/Polymer/polymer-cli) uses [polymer-build](https://github.com/Polymer/polymer-build), which uses polymer-bundler, so you can think of the CLI's build pre-configured polymer-build pipeline including polymer-bundler. Setting this up for you makes the CLI easy to use, but as a command-line wrapper its customization options are more limited. polymer-bundler allows you to completely customize your bundle strategy.
12
13## Usage
14
15Web pages that use multiple [HTML Imports](http://www.html5rocks.com/en/tutorials/webcomponents/imports/), external scripts, and stylesheets to load dependencies may end up making lots of network round-trips. In many cases, this can lead to long initial load times and unnecessary bandwidth usage. The polymer-bundler tool follows HTML Imports, external script and stylesheet references, inlining these external assets into "bundles", to be used in production.
16
17In the future, technologies such as [HTTP/2](http://en.wikipedia.org/wiki/HTTP/2) and [Server Push](https://http2.github.io/faq/#whats-the-benefit-of-server-push) will likely obsolete the need for a tool like polymer-bundler for web deployment uses.
18
19
20## Installation
21
22`polymer-bundler` is available on npm. For maximium utility, `polymer-bundler` should be installed globally.
23
24 npm install -g polymer-bundler
25
26This will install `polymer-bundler` to `/usr/local/bin/polymer-bundler` (you may need `sudo`
27for this step).
28
29## Options
30- `-h`|`--help`: Print this message
31- `-v`|`--version`: Print version number
32- `-r`|`--root`: The root of the package/project being bundled. Defaults to the current working folder.
33- `--exclude <path>`: Exclude a subpath from root. Use multiple times to exclude multiple paths. Tags (imports/scripts/etc) that reference an excluded path are left in-place, meaning the resources are not inlined. ex: `--exclude=elements/x-foo.html --exclude=elements/x-bar.html`
34- `--inline-scripts`: External scripts will only be inlined if this flag is provided.
35- `--inline-css`: External stylesheets will only be inlined if this flag is provided.
36- `--manifest-out <path>`: If specified, the bundle manifest will be written out to `<path>`.
37- `--redirect <prefix>|<path>`: Routes URLs with arbitrary `<prefix>`, possibly including a protocol, hostname, and/or path prefix to a `<path>` on local filesystem. For example `--redirect "myapp://|src"` would route `myapp://main/home.html` to `./src/main/home.html`. Multiple redirects may be specified; the earliest ones have the highest priority.
38- `--rewrite-urls-in-templates`: Fix URLs found inside `<style>` tags and certain element attributes (`action`, `assetpath`, `href`, `src`, and `style`) when inside `<template>` tags. This may be necessary to bundle some Polymer 1.x projects with components that ues relative image URLs in their styles, as Polymer 1.x did not use the `assetpath` of `<dom-module>` to resolve URLs in styles like Polymer 2.x does.
39- `--shell`: Uses a bundling strategy which puts inlines shared dependencies into a specified html app "shell".
40- `--strip-comments`: Strips all HTML comments from the document which do not contain an `@license`, or start with `<!--#` or `<!--!`.
41- `--sourcemaps`: Honor (or create) sourcemaps for inline script tags.
42- `--out-file <path>`: If specified, output will be written to <path> instead of stdout.
43- `--out-dir <path>`: If specified, output will be written to <path>. Necessary if bundling multiple files.
44
45## Usage
46The command
47
48 polymer-bundler target.html
49
50will inline the HTML Imports of `target.html` and print the resulting HTML to standard output.
51
52The command
53
54 polymer-bundler target.html --rewrite-urls-in-templates
55
56will inline the HTML Imports of `target.html` and rewrite relative URLs encountered in style tags and element attributes to support Polymer 1.x projects which may rely on it.
57
58The command
59
60 polymer-bundler target.html > build.html
61
62will inline the HTML Imports of `target.html` and print the result to `build.html`.
63
64The command
65
66 polymer-bundler -r "path/to/target/" /target.html
67
68will inline the HTML Imports of `target.html`, treat `path/to/target/` as the webroot of target.html, and make all URLs absolute to the provided webroot.
69
70The command
71
72 polymer-bundler --exclude "path/to/target/subpath/" --exclude "path/to/target/subpath2/" target.html
73
74will inline the HTML Imports of `target.html` that are not in the directory `path/to/target/subpath` nor `path/to/target/subpath2`.
75
76The command
77
78 polymer-bundler --inline-scripts target.html
79
80will inline scripts in `target.html` as well as HTML Imports. Exclude flags will apply to both Imports and Scripts.
81
82The command
83
84 polymer-bundler --inline-css target.html
85
86will inline Polymerized stylesheets, `<link rel="import" type="css">`
87
88The command
89
90 polymer-bundler --strip-comments target.html
91
92will remove HTML comments, except for those containing `@license` or starting with `<!--#` or `<!--!`. License comments will be deduplicated.
93
94The command
95
96 polymer-bundler --redirect "myapp://|src" target.html
97
98will route all URLs with prefix `myapp://` to the `src` folder. So a URL like `myapp://main/index.html` would actually resolve to a file in `./src/main/index.html` relative to the package root.
99
100## Using polymer-bundler programmatically
101
102polymer-bundler as a library has two exported function.
103
104`polymer-bundler` constructor takes an object of options similar to the command line options:
105
106- `analyzer`: An instance of `polymer-analyzer` which provides analysis of and access to files to bundle. Bundler will create its own instance if this is not given.
107- `excludes`: URLs to exclude from inlining. URLs may represent files or folders. HTML tags referencing excluded URLs are preserved.
108- `sourcemaps`: Honor (or create) sourcemaps for inline scripts
109- `inlineCss`: Will inline content of external stylesheets into the bundle html. Defaults to `true`.
110- `inlineScripts`: Inline content of external scripts into the bundled html. Defaults to `true`.
111- `rewriteUrlsInTemplates`: Fix URLs found inside `<style>` tags and certain element attributes (`action`, `assetpath`, `href`, `src`, and `style`) when inside `<template>` tags. This may be necessary to bundle some Polymer 1.x projects with components that ues relative image URLs in their styles, as Polymer 1.x did not use the `assetpath` of `<dom-module>` to resolve URLs in styles like Polymer 2.x does. Defaults to `false`.
112- `sourcemaps`: Honor (or create) sourcemaps for inline scripts. Defaults to `false`.
113- `stripComments`: Remove all HTML comments, except for `@license`, which are merely de-duplicated, server-side include directives like `<!--# ... -->`, and other important comments of the form `<!--! ... -->`. Defaults to `false`.
114- `strategy`: A function that takes an array of bundles and returns an array of bundles. There are a strategy factory functions available in [bundle-manifest](https://github.com/Polymer/tools/blob/master/packages/bundler/src/bundle-manifest.ts).
115- `urlMapper`: A function that takes bundles and returns a Map of URLs to bundles. This determines the location of generated bundles. There are URL mapper factory functions available in [bundle-manifest](https://github.com/Polymer/tools/blob/master/packages/bundler/src/bundle-manifest.ts)
116
117`.generateManifest()` takes a collection of entrypoint URLs and promises a `BundleManifest` which describes all the bundles it will produce.
118
119`.bundle()` takes a `BundleManifest` and returns a `Promise` for a `BundleResult`, which contains a map of the generated bundle html files and an updated manifest containing information on what imports were inlined for each `Bundle`.
120
121A simple example:
122```js
123const bundler = new require('polymer-bundler').Bundler();
124bundler.generateManifest(['my-app.html']).then((manifest) => {
125 bundler.bundle(manifest).then((result) => {
126 console.log('<!-- BUNDLED VERSION OF my-app.html: -->');
127 console.log(result.documents.get('my-app.html').content);
128 });
129});
130```
131
132An example with a customized sharding strategy and output layout:
133```js
134const {Analyzer, FsUrlLoader} = require('polymer-analyzer');
135const analyzer = new Analyzer({
136 urlLoader: new FsUrlLoader(path.resolve('.'))
137});
138
139const {Bundler,
140 generateSharedDepsMergeStrategy,
141 generateCountingSharedBundleUrlMapper} = require('polymer-bundler');
142const bundler = new Bundler({
143 analyzer: analyzer,
144 excludes: [],
145 inlineScripts: true,
146 inlineCss: true,
147 rewriteUrlsInTemplates: false,
148 stripComments: true,
149 // Merge shared dependencies into a single bundle when
150 // they have at least three dependents.
151 strategy: generateSharedDepsMergeStrategy(3),
152 // Shared bundles will be named:
153 // `shared/bundle_1.html`, `shared/bundle_2.html`, etc...
154 urlMapper: generateCountingSharedBundleUrlMapper('shared/bundle_')
155});
156
157// Provide the strategy and the URL mapper to produce a
158// manifest using custom behavior.
159bundler.generateManifest(['item.html', 'cart.html']).then((manifest) => {
160 bundler.bundle(manifest).then((result) => {
161 // do stuff here with your BundleResult
162 });
163});
164```
165
166## Caveats
167
168In order to inlining the contents of HTML Import documents into the bundle, `polymer-bundler` has to make a few compromises to preserve valid HTML structure, script execution and style rule order:
169
1701. Contents of all HTML Import documents will be moved to `<body>`
171
1721. Any scripts or styles, inline or linked, which occur after a `<link rel="import">` node in `<head>` will be moved to `<body>` after the contents of the HTML Import.