cfind
v0.3.0
Published
Find (and replace) code in a workspace
Downloads
16
Readme
cfind
Node utility to find (and replace) code.
Install
npm install cfind
Examples
Search code:
var cfind = require("cfind");
cfind.find({
query: "jQuery",
root: "/Users/test/myworkspace"
}, function(err, result) {
});
Search files:
var cfind = require("cfind");
cfind.files({
query: "test.js",
root: "/Users/test/myworkspace"
}, function(err, result) {
});