Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/outatime/broccoli-replace
Replace text patterns with applause.
https://github.com/outatime/broccoli-replace
Last synced: about 14 hours ago
JSON representation
Replace text patterns with applause.
- Host: GitHub
- URL: https://github.com/outatime/broccoli-replace
- Owner: outaTiME
- License: mit
- Created: 2014-02-22T03:55:45.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2021-05-03T23:57:50.000Z (over 3 years ago)
- Last Synced: 2024-11-09T00:10:02.831Z (7 days ago)
- Language: JavaScript
- Homepage:
- Size: 75.2 KB
- Stars: 16
- Watchers: 4
- Forks: 8
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: license
Awesome Lists containing this project
README
# broccoli-replace
[![Build Status](https://img.shields.io/github/workflow/status/outaTiME/broccoli-replace/CI)](https://github.com/outaTiME/broccoli-replace/actions/workflows/main.yml)
[![Version](https://img.shields.io/npm/v/broccoli-replace.svg)](https://www.npmjs.com/package/broccoli-replace)
![Prerequisite](https://img.shields.io/badge/node-%3E%3D10-blue.svg)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](#)
[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg)](http://commitizen.github.io/cz-cli/)
[![Twitter: outa7iME](https://img.shields.io/twitter/follow/outa7iME.svg?style=social)](https://twitter.com/outa7iME)> Replace text patterns with [applause](https://github.com/outaTiME/applause).
## Install
From NPM:
```shell
npm install broccoli-replace --save-dev
```## Usage
Assuming installation via NPM, you can use `broccoli-replace` in your Brocfile.js like this:
```javascript
var BroccoliReplace = require('broccoli-replace');module.exports = new BroccoliReplace('src', {
files: [
'**/*.html'
],
patterns: [
{
match: 'foo',
replacement: 'bar'
}
]
});
```## Options
Supports all the applause [options](https://github.com/outaTiME/applause#options).
## Examples
### Basic
File `src/manifest.appcache`:
```
CACHE MANIFEST
# @@timestampCACHE:
favicon.ico
index.htmlNETWORK:
*
```Brocfile.js:
```javascript
var BroccoliReplace = require('broccoli-replace');module.exports = new BroccoliReplace('src', {
files: [
'manifest.appcache'
],
patterns: [
{
match: 'timestamp',
replacement: Date.now()
}
]
});
```### Multiple matching
File `src/manifest.appcache`:
```
CACHE MANIFEST
# @@timestampCACHE:
favicon.ico
index.htmlNETWORK:
*
```File `src/humans.txt`:
```
__ _
_ _/__ /./|,//_`
/_//_// /_|/// //_, outaTiME v.@@version/* TEAM */
Web Developer / Graphic Designer: Ariel Oscar Falduto
Site: https://www.outa.im
Twitter: @outa7iME
Contact: afalduto at gmail dot com
From: Buenos Aires, Argentina/* SITE */
Last update: @@timestamp
Standards: HTML5, CSS3, robotstxt.org, humanstxt.org
Components: H5BP, Modernizr, jQuery, Bootstrap, LESS, Jade, Grunt
Software: Sublime Text, Photoshop, LiveReload
```Brocfile.js:
```javascript
var BroccoliReplace = require('broccoli-replace');
var pkg = require('./package.json');module.exports = new BroccoliReplace('src', {
files: [
'manifest.appcache',
'humans.txt'
],
patterns: [
{
match: 'version',
replacement: pkg.version
},
{
match: 'timestamp',
replacement: Date.now()
}
]
});
```### Cache busting
File `src/index.html`:
```html
```
Brocfile.js:
```javascript
var BroccoliReplace = require('broccoli-replace');module.exports = new BroccoliReplace('src', {
files: [
'index.html'
],
patterns: [
{
match: 'timestamp',
replacement: Date.now()
}
]
});
```### Include file
File `src/index.html`:
```html
@@include
```
Brocfile.js:
```javascript
var BroccoliReplace = require('broccoli-replace');
var fs = require('fs');module.exports = new BroccoliReplace('src', {
files: [
'index.html'
],
patterns: [
{
match: 'include',
replacement: fs.readFileSync('./includes/content.html', 'utf8')
}
]
});
```### Regular expression
File `src/username.txt`:
```
John Smith
```Brocfile.js:
```javascript
var BroccoliReplace = require('broccoli-replace');module.exports = new BroccoliReplace('src', {
files: [
'username.txt'
],
patterns: [
{
match: /(\w+)\s(\w+)/,
replacement: '$2, $1' // Replaces "John Smith" with "Smith, John"
}
]
});
```### Lookup for `foo` instead of `@@foo`
Brocfile.js:
```javascript
var BroccoliMergeTrees = require('broccoli-merge-trees');
var BroccoliReplace = require('broccoli-replace');var inputNodes = [
new BroccoliReplace('src', {
files: [
'foo.txt'
],
patterns: [
{
match: /foo/g, // Explicitly using a regexp
replacement: 'bar'
}
]
}),
new BroccoliReplace('src', {
files: [
'foo.txt'
],
patterns: [
{
match: 'foo',
replacement: 'bar'
}
],
usePrefix: false // Using the option provided
}),
new BroccoliReplace('src', {
files: [
'foo.txt'
],
patterns: [
{
match: 'foo',
replacement: 'bar'
}
],
prefix: '' // Removing the prefix manually
})
];module.exports = new BroccoliMergeTrees(nodes);
```## Related
- [applause](https://github.com/outaTiME/applause) - Human-friendly replacements
## License
MIT © [outaTiME](https://outa.im)