A module for using ripgrep in a Node project
npm install vscode-ripgrep-with-github-api-error-fixSame as vscode-ripgrep, but fixes the github rate limiting error Downloading ripgrep failed: Error: Request failed: 403 by downloading the files directly instead of also using the github rest api.
```
$ npm install vscode-ripgrep-with-github-api-error-fix
`js
import { rgPath } = from "vscode-ripgrep-with-github-api-error-fix"
import { spawn } from 'child_process'
const childProcess = spawn(rgPath, ["abc", "."], {
stdio: "inherit",
});
``
