npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

broccoli-asset-prepend

v0.1.2

Published

broccoli asset prepending (rewrite assets references)

Downloads

44

Readme

broccoli-asset-prepend

Broccoli plugin to add prepend asset references with a scheme + domain or root path.

Turns

<script src="assets/appname.js">
background: url('/images/foo.png');

Into

<script src="https://subdomain.cloudfront.net/assets/appname.js">
background: url('https://subdomain.cloudfront.net/images/foo.png');

Installation

npm install broccoli-asset-prepend --save-dev

Usage

var AssetPrepend = require('broccoli-asset-prepend');

var assetNode = new AssetPrepend(node, {
  assetExtensions: ['js', 'css', 'png', 'jpg', 'gif'],
  replaceExtensions: ['html', 'js', 'css'],
  ignore: ['testem.js'],
  prepend: 'https://subdomain.cloudfront.net/'
});

Options

  • prepend - Default: '' - A string to prepend to all of the assets. Commonly a CDN url like https://subdomain.cloudfront.net/
  • assetExtensions - Default: ['js', 'css', 'png', 'jpg', 'gif', 'map'] - The file types to prepend.
  • replaceExtensions - Default: ['html', 'css', 'js'] - The file types to replace source code with new checksum file names.
  • ignore - Default: [] - An array of paths to skip rewriting.
  • enableCaching - Default: true - If true, will set this options on broccoli-asset-rewrite
  • assetFileFilter - Default: a function always returning true - Asset files matching assetExtensions will be passed through this filter giving you the opportunity to exclude some assets. broccoli-asset-rewrite is slower with a larger assetMap, so this can be useful to optimize build times.
  • annotation - Default: null. A human-readable description for this plugin instance.

Default settings

The default settings are available if needed in your application or addon via: var broccoliAssetPrependDefaults = require( 'broccoli-asset-prepend/lib/default-options' );

Ember CLI addon usage

var app = new EmberApp({
  assetPrepend: {
    prepend: 'https://sudomain.cloudfront.net/'
  }
});

Ember CLI addon options

This addon runs in the postProcessTree hook.

See Options section above for explanations and defaults

  • enabled - Default: true - will skip entirely if false
  • prepend - Default: null - Required
  • assetExtensions
  • replaceExtensions
  • ignore
  • enableCaching
  • assetFileFilter

Credits

Thanks to broccoli-asset-rev for inspiration and to Precision Nutrition for sponsoring the work on this plugin.