Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

fingerprint-brunch

Package Overview
Dependencies
Maintainers
1
Versions
30
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fingerprint-brunch

A Brunch JS plugin for cache busting assets

  • 2.0.1
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
23
increased by91.67%
Maintainers
1
Weekly downloads
 
Created
Source

fingerprint-brunch Greenkeeper badge Build Status Coverage Status Join the chat at https://gitter.im/dlepaux/fingerprint-brunch

A Brunch plugin witch rename assets with a SHA for fingerprinted it.

NPM NPM

Installation

npm install fingerprint-brunch --save-dev

Usage

Configuration

Optional You can override fingerprint-brunch's default options by updating your brunch-config.coffee with overrides.

exports.config =
  # ...
  plugins:
    fingerprint:
      # Mapping file so your server can serve the right files
      manifest: './path/to/assets.json'

The Manifest

{
  "css/master.css": "css/master-364b42a1.css",
  "js/master.js": "js/master-cb60c02b.js",
  "img/troll.png": "img/troll-5f2d5cbe.png",
  "fonts/font.eot": "fonts/font-45d860a3.eot",
  "fonts/font.woff": "fonts/font-6ced13b9.woff",
  "fonts/font.ttf": "fonts/font-82c653e7.ttf",
  "fonts/font.svg": "fonts/font-52343d4f.svg"
}

With the option autoReplaceAndHash to true you will have all fingerprint With srcBasePath and destBasePath you can remove some part of your path files.

Options

manifest

Type: String Default: ./assets.json

Mapping fingerprinted files

srcBasePath

Type: String Default: exemple/

The base Path you want to remove from the key string in the mapping file

destBasePath

Type: String Default: out/

The base Path you want to remove from the value string in the mapping file

hashLength

Type: Integer Default: 8

How many digits of the SHA1

autoClearOldFiles

Type: Boolean Default: false

Remove old fingerprinted files (usefull in development env)

targets

Type: String|Array Default: *

Files you want to hash, default is all if not you can put an array of files in your joinTo like ['app.js', 'vendor.js', ...]

environments

Type: Array Default: ['production']

Environment to fingerprint files

alwaysRun

Type: Boolean Default: false

Force fingerprint-brunch to run in all environments when true.

autoReplaceAndHash

Type: Boolean Default: false

Find assets in your jointTo files. It will be finded with url('path/to/assets.jpg') in your css (for now)

publicRootPath

Type: string Default: /public

For support multiple themes, you can set the public root path, exemple :

My config.paths.public is ../../public/theme/theme-1/ in css your fonts, images will be linked like that : /theme/theme-1/img/troll.png.

You must set publicRootPath with ../../public to conserve correct link in your css..

manifestGenerationForce

Type: Boolean Default: false

Force the generation of the manifest, event if there are no fingerprinted files

assetsPatterns

Type: RegExp Object Default: new RegExp(/url\([\'\"]?[a-zA-Z0-9\-\/_.:]+\.(woff|woff2|eot|ttf|otf|jpg|jpeg|png|bmp|gif|svg)\??\#?[a-zA-Z0-9\-\/_]*[\'\"]?\)/g)

Regex to match assets in css with url() attribute

paramettersPattern

Type: Regex Default: /(\?|\&|\#)([^=]?)([^&]*)/gm

Match hash and parameters in an URL

Testing / Issues

Run npm i && npm test

Contributing

Pull requests are welcome. If you add functionality, then please add unit tests to cover it.

License

« Copyright © David Lepaux

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

The Software is provided “as is”, without warranty of any kind, express or implied, including but not limited to the warranties of merchantability, fitness for a particular purpose and noninfringement. In no event shall the authors or copyright holders be liable for any claim, damages or other liability, whether in an action of contract, tort or otherwise, arising from, out of or in connection with the software or the use or other dealings in the Software. »

Keywords

FAQs

Package last updated on 18 Sep 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc