Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/qard/node-module-compile-transform

Transform compile input text of regex-matched node modules
https://github.com/qard/node-module-compile-transform

compile module nodejs transform

Last synced: 12 days ago
JSON representation

Transform compile input text of regex-matched node modules

Awesome Lists containing this project

README

        

# node-module-compile-transform

With `node-module-compile-transform`, text transform functions can be applied
to any loaded module with a filename matching a given regular expression.

## Install

```sh
npm install node-module-compile-transform
```

## Usage

The `node-module-compile-transform` must always be required before the module
you want to patch is loaded.

```js
const patch = require('node-module-compile-transform')

// Replace "foo" with "bar" in any js file with a path ending in foo.js
patch(/foo\.js$/, content => content.replace(/foo/g, 'bar'))

console.log(require('./foo')) // returns "bar" instead of "foo"
```

---

### Copyright (c) 2017 Stephen Belanger
#### Licensed under MIT License

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.