A wrapper around ripgrep binary
npm install ripgrep-bin
const execFile = require('child_process').execFile;const ripgrep = require('ripgrep-bin');execFile(ripgrep, ['hello'], (err, stdout) => { if (err) throw err; console.log(stdout);});
execFile(ripgrep, ['hello'], (err, stdout) => { if (err) throw err; console.log(stdout);});