Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lvce-editor/ripgrep
A module for using ripgrep in a Node project.
https://github.com/lvce-editor/ripgrep
lvce-editor ripgrep
Last synced: 3 days ago
JSON representation
A module for using ripgrep in a Node project.
- Host: GitHub
- URL: https://github.com/lvce-editor/ripgrep
- Owner: lvce-editor
- License: mit
- Created: 2023-10-14T11:39:33.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-10-30T22:46:49.000Z (16 days ago)
- Last Synced: 2024-11-04T02:02:36.973Z (11 days ago)
- Topics: lvce-editor, ripgrep
- Language: JavaScript
- Homepage:
- Size: 142 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ripgrep
A module for using [ripgrep](https://github.com/BurntSushi/ripgrep/) in a Node project.
Same as [vscode-ripgrep](https://github.com/microsoft/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.
## Install
```
$ npm install @lvce-editor/ripgrep
```## Usage
```js
import { rgPath } = from "@lvce-editor/ripgrep"
import { spawn } from 'node:child_process'const childProcess = spawn(rgPath, ["abc", "."], {
stdio: "inherit",
});
```## Gitpod
[![Open in Gitpod](https://gitpod.io/button/open-in-gitpod.svg)](https://gitpod.io#https://github.com/lvce-editor/ripgrep)
## Credits
This project is very much based on https://github.com/microsoft/vscode-ripgrep by Microsoft.