Search for HTTP(S) URLs in source and config.
Section: Refactor recipes
Find hard-coded URLs
bash
bash
rg -P 'https?://\S+' .Explanation
Great for finding config drift, API endpoints, and test fixtures.
Learn the surrounding workflow
Compare similar commands or jump into common fixes when this command is part of a bigger troubleshooting path.
Related commands
Same sheet · prioritizing Refactor recipes
Find debug logging in source code
Locate `console.log` usage across a codebase.
Find deprecated API calls
Search for an old method across target languages.
Find a React hook across TSX files
Search only the frontend component surface.