hpd-asset-pipeline v0.0.8
A fast, in-memory, easy-to-configure asset pipeline, for HuffPostData stories.
Takes a JSON configuration as input. Outputs an AssetBucket. (Read more on both below.)
The idea is to compile all your assets (images, stylesheets, scripts) within milliseconds. This tasteful feature list:
- SCSS compilation.
- Simple JavaScript bundling:
require()-ed JavaScript is included inline. - UglifyJS2 compression. (This can be
slow; use
UGLIFY=falseorUGLIFY=trueenvironment variables to control it.) - Filename globbing lets you specify filenames by pattern.
- md5sum-digested URLs: they let you cache forever and deploy at will, without worrying about race conditions.
- URL helpers: given a key, AssetBucket will return the URL (including hostname) or "href" (URL minus hostname).
Usage
'use strict'
const AssetPipeline = require('hpd-asset-pipeline')
const configuration = {
host: 'https://assets.example.org', // For generating URLs
baseHref: '/my-project', // For generating URLs and hrefs
basePath: `${__dirname}/assets`, // Where we read our input files (may be ".")
assets: [
// Asset-pipeline steps occur in order. Each step can read the output of all
// previous steps.
//
// We'll put images first, so our SCSS can read from them.
{
// "digest" logic does this:
//
// * Reads file contents and does not mangle them
// * Gives the asset an href incorporating the md5sum: e.g.,
// "image-ab2321a.png"
// * Assigns a Content-Type based on the file extension
logic: 'digest',
glob: 'images/**/*.{png,jpg,gif,svg,ico}'
},
{
logic: 'digest',
glob: 'javascripts/{social,stats}.js'
},
{
// "scss" logic does this:
//
// * Reads file contents
// * Runs content through Sass, with special helper methods
// * Runs content through postcss, to add vendor prefixes
// * Gives the asset a "key" ending in ".css": e.g.,
// "stylesheets/index.css".
// * Gives the asset an href incorporating the md5sum and '.css': e.g.,
// "index-ab15428.css"
// * Assigns a Content-Type of 'text/css'
// * Produces a source map, e.g., "index-ab15428.css.map", with a
// Content-Type of 'application/json'
logic: 'scss',
glob: 'stylesheets/index.scss'
},
{
// "javascript" logic does this:
//
// * Reads file contents
// * Resolves require() calls by embedding their contents
// * Runs UglifyJS
// * Gives the asset an href incorporating the md5sum: e.g.,
// "app-ab234512.js"
// * Assigns a Content-Type of 'application/javascript'
// * Produces a source map, e.g., "app-ab234512.js.map", with a
// Content-Type of 'application/json'
logic: 'javascript',
glob: 'javascrippts/app.js'
},
{
// "raw" logic does this:
//
// * Reads file contents
// * Assigns a Content-Type based on the file extension
// * Assigns href based on filename
//
// Beware: if you use the AssetBucket as intended and serve the generated
// assets with a year-long Cache-Control header, then any client that
// downloads a raw asset will never see any updates. You should favor
// "digest" logic unless A) the file won't change; and B) other websites
// refer to this asset's URL.
logic: 'raw',
glob: 'javascripts/pym.min.js'
}
]
}
AssetPipeline.render(configuration, (err, bucket) => {
// Any compilation error halts compilation and returns an Error.
if (err) throw err
// Now you have an AssetBucket! So exciting. What you can do with it:
// You can generate a StaticWebsite -- you can upload this to S3 or
// run it locally
const website = bucket.toWebsite()
// You can grab URLs:
bucket.hrefTo('javascripts/social.js') // => '/my-project/javascripts/social-ab12341.js'
bucket.urlTo('javascripts/social.js') // => 'https://assets.example.org/my-project/javascripts/social-ab12341.js'
bucket.dataUriFor('images/logo.png') // => 'data:image/png;base64,....'
bucket.dataFor('images/logo.png') // => a Buffer containing PNG data
}SCSS helper functions
Our stylesheets are Sass.
We have a couple of helper functions:
asset-url(key): creates aurl()value pointing to the specified asset. Example:background-image: asset-url('images/header.jpg')will producebackground-image: url(/images/header-0f0f0f0f0f.jpg)asset-data-url(key): creates aurl(data:[mime];base64,[data])value containing all the bytes of the specified asset, with the asset's MIME type. Example:background-image: asset-url('images/highlight.png')will producebackground-image: url('data:image/png;base64,XXXXXXXXXX...')
asset-url() forces an extra HTTP request each time a browser loads the
stylesheet. Use it for large assets.
asset-data-url() makes the stylesheet larger, since it includes the file
contents. The page won't render until the entire stylesheet has transferred. Use
it for assets under a few kilobytes in size.
Error handling
Compilation failures (such as missing require() or invalid SCSS) will halt
all compilation and return an Error.
hrefTo(), urlTo(), dataUriFor() and dataFor() will throw Errors
when the assets they refer to do not exist.
Logic implementation
These aren't "plugins" (yet). Each "logic" is an Object which a Function member
named sync or async. (Prefer sync.)
The sync() method accepts two arguments: bucket (an AssetBucket, with
.baseHref and .baseUrl properties, plus .hrefTo() et al for the
.assets which were compiled in previous steps); and paths (an Array of
String paths, from glob()). It may throw an Error. Otherwise, it will return
an Array of Asset objects as output.
The async() method accepts a third argument, callback; in case of error,
it calls callback(new Error(...)).
License
Copyright (c) 2017 The Huffington Post, released under the MIT license. See LICENSE.