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

gulp-batch-replace

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gulp-batch-replace

A batch string/regexp replace plugin for gulp

  • 0.0.0
  • latest
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

gulp-batch-replace

A gulp-replace fork for batch replacing files.

##Installation

npm install gulp-batch-replace

Usage

var replaceThis = [
	[ 'original', 'replacement' ],
	[ 'original1', 'replacement1' ],
	[ 'original2', 'replacement2' ]
];

var replace = require('gulp-batch-replace);

gulp.task('example', function(){
	gulp.src('foo.txt')
		.pipe(replace(replaceThis))
		.pipe(gulp.dest('bar/'));
});

API

gulp-batch-replace can be called with a string or regex.

replace(array)

array

Should contain subarrays, where the first value is the search parameter (string or regexp) and the second value is the replacement value (string).

You can also mix search parameter types, for example:

var replaceMe = [
	[ 'original', 'replacement' ],
	[ /regexp/g, 'replacement' ],
	...
];

Keywords

FAQs

Package last updated on 03 Feb 2014

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