# gulp-find

> A string finder plugin for gulp

Latest version **0.0.11** (published 2024-12-12) · MIT license · 0 weekly downloads

> **Deprecated.** This package is deprecated.

## Install

```sh
npm install gulp-find
pnpm add gulp-find
yarn add gulp-find
bun add gulp-find
```

## Health

**Score 10/100 (F)** — status: deprecated.

Negative: deprecated.

## Facts

| | |
|---|---|
| Version | 0.0.11 |
| Published | 2024-12-12 |
| First published | 2016-03-16 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 2 |
| Unpacked size | 9 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | S.Panfilov |
| Maintainers | se-panfilov |
| Keywords | gulpplugin, finder, find, text, string |

## Links

- npm: https://www.npmjs.com/package/gulp-find
- Repository: https://github.com/se-panfilov/gulp-find
- Homepage: https://github.com/se-panfilov/gulp-find#readme
- Issues: https://github.com/se-panfilov/gulp-find/issues
- npm.io page: https://npm.io/package/gulp-find

## Dependencies (2)

- [replacestream](https://npm.io/package/replacestream.md) ^4.0.0
- [readable-stream](https://npm.io/package/readable-stream.md) ^2.0.6

## Alternatives

- [@mce/gif](https://npm.io/package/@mce/gif.md) — 2.6K weekly downloads
- [cleanse](https://npm.io/package/cleanse.md) — 173 weekly downloads
- [str](https://npm.io/package/str.md) — 127 weekly downloads
- [naming](https://npm.io/package/naming.md) — 95 weekly downloads
- [tap-telco-api](https://npm.io/package/tap-telco-api.md) — 19 weekly downloads

## Recent versions

- 0.0.11 (latest) — 2024-12-12
- 0.0.10 — 2016-05-10
- 0.0.9 — 2016-03-16

## README

# gulp-find 
[![Codacy Badge](https://api.codacy.com/project/badge/grade/32d3a1bc4bb34b3891efca49834c6adc)](https://www.codacy.com/app/se-panfilov/gulp-find)
[![bitHound Overall Score](https://www.bithound.io/github/se-panfilov/gulp-find/badges/score.svg)](https://www.bithound.io/github/se-panfilov/gulp-find)
[![bitHound Code](https://www.bithound.io/github/se-panfilov/gulp-find/badges/code.svg)](https://www.bithound.io/github/se-panfilov/gulp-find)
[![Code Climate](https://codeclimate.com/github/se-panfilov/gulp-find/badges/gpa.svg)](https://codeclimate.com/github/se-panfilov/gulp-find)
[![Build Status](https://travis-ci.org/se-panfilov/gulp-find.svg?branch=master)](https://travis-ci.org/se-panfilov/gulp-find)
[![npm version](https://badge.fury.io/js/gulp-find.svg)](http://badge.fury.io/js/x-date-core)
[![Dependency Status](https://david-dm.org/se-panfilov/gulp-find.svg)](https://david-dm.org/se-panfilov/gulp-find)
[![devDependency Status](https://david-dm.org/se-panfilov/gulp-find/dev-status.svg)](https://david-dm.org/se-panfilov/x-date-core#info=devDependencies)
[![GitHub license](https://img.shields.io/github/license/mashape/apistatus.svg)](https://github.com/se-panfilov/gulp-find/blob/master/LICENSE)

## Overview
Simple text finder(files, streams) via gulp.

[![NPM](https://nodei.co/npm/gulp-find.png?downloads=true&downloadRank=true&stars=true)](https://nodei.co/npm/gulp-find/)

### Install

```shell
npm install --save-dev gulp-find
```

### Usage

##### Regex find

```javascript
var find = require('gulp-find');

gulp.task('templates', function(){
  gulp.src(['file.txt'])
    .pipe(find(/foo(.{3})/g))
    .pipe(gulp.dest('build/file.txt'));
});
```

##### String find

```javascript
var find = require('gulp-find');

gulp.task('templates', function(){
  gulp.src(['file.txt'])
    .pipe(find('bar'))
    .pipe(gulp.dest('build/file.txt'));
});
```
##### What if I need replace?

Use [gulp-replace][1] for string replace.

if you need first find, and replace after, you may combine `gulp-find` and `gulp-replace` via pipe

## Legal Disclaimer

This project is provided "as is", without warranty of any kind. The authors and contributors disclaim all liability for any damages arising from its use, inability to use, or performance. Users are responsible for ensuring compliance with applicable laws and regulations in their jurisdiction, including but not limited to:

- European Union: Cyber Resilience Act (CRA) and Artificial Intelligence Act (AI Act)
- United States: Uniform Commercial Code (UCC) and Export Administration Regulations (EAR)
- China: Cybersecurity Law
- India: Information Technology Act

For details, see the full [DISCLAIMER.md](DISCLAIMER.md) file.

[1]:https://github.com/lazd/gulp-replace

---
_Source: https://npm.io/package/gulp-find · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
