https://github.com/borolgs/node-modules-hunter
App to search for node_modules directories
https://github.com/borolgs/node-modules-hunter
effector rust tauri webview
Last synced: 10 months ago
JSON representation
App to search for node_modules directories
- Host: GitHub
- URL: https://github.com/borolgs/node-modules-hunter
- Owner: borolgs
- Created: 2022-09-04T19:22:28.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2022-09-04T19:44:56.000Z (over 3 years ago)
- Last Synced: 2025-02-07T03:41:52.738Z (11 months ago)
- Topics: effector, rust, tauri, webview
- Language: TypeScript
- Homepage:
- Size: 236 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# node_modules hunter
Recursively search for node_modules in a specified directory.
Made with [tauri.app](https://tauri.app/).

Current API usage:
- `Command`: run main logic
- `Event`: on found next node_modules, open in finder
- `Dialog`: select target directory
- `mockIPC`: browser-only development
- `waldir`: recursive search directories
- `std::process::Command`: run `open -R /path/to/dir` (reveals in finder) and `du -sk /path/to/dir` (get dir size)
Frontend stack:
- react
- [effector](https://effector.dev/)
- [blueprintjs](https://blueprintjs.com/docs/)
## Usage
```bash
# install
git clone
pnpm i
# development
pnpm run dev # browser only
pnpm tauri run dev
# build
pnpm tauri run build
```