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

grunt-htmlcpr

v0.1.2

Published

A grunt task to copy HTML files with all the local assets (images, scripts, style files, etc.) that it needs.

Downloads

3

Readme

grunt-htmlcpr

A grunt task to copy HTML files with all the local assets (images, scripts, style files, etc.) that it needs.

Getting Started

This plugin requires Grunt ~0.4.5

If you haven't used Grunt before, be sure to check out the Getting Started guide, as it explains how to create a Gruntfile as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:

npm install grunt-htmlcpr --save-dev

Once the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:

grunt.loadNpmTasks('grunt-htmlcpr');

The "htmlcpr" task

Overview

In your project's Gruntfile, add a section named htmlcpr to the data object passed into grunt.initConfig().

grunt.initConfig({
  htmlcpr: {
    options: {
      // Files withing the directory are copied but the links in these files
      // are not followed..
      norecDir: 'vendor',
    },
    files: [{
      expand: true,
      cwd: 'src',
      src: ['index.html', 'images/**/*.jpg', 'fonts/**', 'misc/**'],
      dest: 'build',
    }],
  },
});

Options

options.rootDir

Type: string Default value: ''

A directory overriding cwd.

options.noRec

Type: string Default value: ''

Files in the noRec directory will be copied, but the links in these files won't be followed.

options.blacklistFn

Type: function (url: string, src: string): bool Default value: null

The function is called for every URL detected by the plugin. First parameter url is the detected URL and the second parameter src is the path of the currently processed file.

If the function returns truthy value the link is replaced with '' and the file referenced by the link is not copied to the destination dir.

options.schemelessUrlFix

Type: string|function (url: string, src: string): bool Default value: null

The function is called when a schemeless url is detected (e.g. //cdn.superfast.com/myself.png). If the value of the option is a string, that string is considered to be the protocol and is appended to the URL. If the value is the function, that function is being called and the URL is replaced with its return value.

Usage Examples

Basic Use Case

Let's say you have a directory with the following structure:

├── app
│   ├── index.html
│   ├── css
│   │   ├── ... CSS files ...
│   │   └── 
│   ├── images
│   │   ├── ... images ...
│   │   └── 
│   ├── js
│   │   ├── ... javascript ...
│   │   └── 
│   ├── fonts
│   │   ├── ... fonts ...
│   │   └── 
│   └── vendor
│       ├── ... vendor files ...
│       └── 
└── build

You want to copy index.html and any local files required by this file (images, scripts, etc.). You need to copy only the files required by index.html and no more.

htmlcpr comes to the rescue!

The following configuration would do exactly what you want:

grunt.initConfig({
  htmlcpr: {
    options: {
      norecDir: 'vendor',
    },
    files: [{
      expand: true,
      cwd: 'app',
      src: ['index.html', 'fonts/**'],
      dest: 'build',
    }],
  },
});

If the only files included from index.html are css/main.css, js/main.js and vendor/fancy.css; in thier turns,css/main.css turn includes images/logo.png and vendor/fancy.css includes vendor/fancy-spinner.png. Then the contents of build directory after an execution of grun htmlcpr would be:

└── build
    ├── index.html
    ├── css
    │   └── main.css          # included by index.html
    ├── images
    │   └── logo.png          # included by main.css
    ├── js
    │   └── main.js           # included by index.html
    ├── fonts
    │   ├── ... all fonts ... # the fonts are explicitly specified
    │   ├── ... from app/ ... # in task object, hence they were
    │   └── ...    dir    ... # copied as is.
    └── vendor
        └── fancy.css

NOTE: since vendor was set as norecDir, any links in the vendor/fancy.css file were not followed and hence vendor/fancy-spinner.png was not copied.

Contributing

In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using Grunt.

Release History

  • 2016-05-06 – v0.1.2 – Support options.schemelessUrlFix
  • 2016-05-03 – v0.1.1 – Support options.blacklistFn
  • 2016-05-03 – v0.1.0 – Basic implementation