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

gulp-copycat

v0.0.4

Published

Copy blocks of content from one file to another

Downloads

111

Readme

gulp-copycat

Copy values inside source tag blocks to destination tag blocks

Table of Contents

Usage

Install:

npm install --save-dev gulp-copycat

Add some source tags in your source file:

<!-- ccs:<name> -->
Everything here will be copied
<!-- /ccs:<name> -->

Add some destination blocks in your destination file:

<!-- ccd:<name> -->
Everything here will be replaced by value in source file
<!-- /ccd:<name> -->

name name of the tag.

ccs: ("copy cat source") is a predefined source tag. /ccs: end of source tag block

ccd: ("copy cat destination") is a predefined destination tag. /ccd: end of destination tag block

API

copycat(options)

options

Type: object

  • {Boolean} filterSourceFiles (true) - Filter out files containing source tags from pipe stream. Set to false if you want to keep both source tag files and destination tag files in pipe stream.

  • {Boolean} keepSourceTags (false) - Keep source tags in source file -- (<!-- ccs:<name> --> and <!-- /ccs:<name> -->)

    "options.filterSourceFiles" must be set to false

  • {Boolean} keepSourceTagValues (false) - Keep value between source tags in source file -- (<!-- ccs:<name> --> VALUES <!-- /ccs:<name> -->)

    "options.filterSourceFiles" must be set to false

  • {Boolean} keepDestTags (false) - Keep destination tags in destination file -- (<!-- ccd:<name> -->``<!-- /ccd:<name> -->)

It is possible to add custom source- and destination tags. This can be useful for when you need to add tags to files that has different comment syntax than HTML:

options.tags

Type: object

var options = {
 tags: {
    source: [
    {
		begin: /regex-here/, // beginning of source tag: <!-- ccs:name -->
		end: /regex-here/	 // end of source tag: <!-- /ccs:name -->
	}
	],
	dest: [
	{
		begin: /regex-here/, // beginning of destination tag: <!-- ccd:name -->
		end: /regex-here/	 // end of destination tag: <!-- /ccd:name -->
	}
	],
 }
};

Examples

Example 1: Add values from one html file to another

source.html:

<!DOCTYPE html>
<html>
    <head>...</head>
    <body>

<div>
    <!-- ccs: foo -->Foo<!-- /ccs: foo -->
    <!-- ccs: bar -->Bar<!-- /ccs: bar -->
</div>

destination.html:

<!DOCTYPE html>
<html>
    <head>...</head>
    <body>

<div>
    <span>
        Have some <!-- ccd: foo -->(watch me disappear)<!-- /ccd: foo -->
    </span>

    <h3>
        with <!-- ccd:bar--><!-- /ccd:bar-->
    </h3>
</div>

gulpfile.js:

var gulp 		= require('gulp');
var copycat 	= require('gulp-copycat');
var concat      = require('gulp-concat');

gulp.task('default', function() {
	return gulp.src(['source.html', 'destination.html'])
			.pipe(copycat())
			.pipe(concat('result.html'))
			.pipe(gulp.dest('/build/'))
});

Result (/build/result.html):

<!DOCTYPE html>
<html>
    <head>...</head>
    <body>

<div>
    <span>
        Have some Foo
    </span>

    <h3>
        with Bar
    </h3>    
</div>

Example 2: Add source tags for javascript comment syntax:

constants.js

var version = /*-- ccs:version --*/1.2.3/*-- /ccs:version --*/;

destination.html:

<!DOCTYPE html>
<html>
    <head>
	    <title><!-- ccd:version --><!-- /ccd:version --></title>
    </head>
    <body>...

gulpfile.js:

var gulp 		= require('gulp');
var copycat 	= require('gulp-copycat');
var concat      = require('gulp-concat');

var sourceRegexBegin: /\/\*--\s*ccs:\s*(\S+)\s*--\*\//gi
var sourceRegexEnd:   /\/\*--\s*\/ccs:\s*(\S+)\s*--\*\//gi

var options = {
 tags: {
    source: [
    {
		begin: sourceRegexBegin, // beginning of source tag: /*-- ccs:name --*/
		end:   sourceRegexEnd	 // end of source tag: /*-- /ccs:name --*/
	}
	]
 }

gulp.task('default', function() {
	return gulp.src(['constants.js', 'destination.html'])
			.pipe(copycat(options))
			.pipe(concat('index.html'))
			.pipe(gulp.dest('/build/'))
});

Result (/build/index.html):

<!DOCTYPE html>
<html>
    <head>
	    <title>1.2.3</title>
    </head>
    <body>...

Changelog

0.0.4

Fixed issue where destination file would become one character less in length

0.0.3

Added README

0.0.2

Initial version added to GitHub