ripgrep-bin

13.0.0 • Public • Published

Ripgrep-bin

About

This is a simple wrapper around ripgrep that allows for use in node. All credit for the tool goes to: https://github.com/BurntSushi/ripgrep.

Use

const execFile = require('child_process').execFile;
const ripgrep = require('ripgrep-bin');

execFile(ripgrep, ['hello'], (err, stdout) => {
  if (err) throw err;
  console.log(stdout);
});

Package Sidebar

Install

npm i ripgrep-bin

Weekly Downloads

11

Version

13.0.0

License

MIT

Unpacked Size

3.52 kB

Total Files

7

Last publish

Collaborators

  • acalix