{"id":27595669,"url":"https://github.com/shivarm/node-peruse","last_synced_at":"2026-01-23T20:02:03.334Z","repository":{"id":261635569,"uuid":"884353579","full_name":"shivarm/node-peruse","owner":"shivarm","description":"A powerful CLI tool designed to analyze your node.js application","archived":false,"fork":false,"pushed_at":"2025-10-01T18:12:40.000Z","size":128,"stargazers_count":0,"open_issues_count":3,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-26T04:48:51.634Z","etag":null,"topics":["analyze","dependencies","git","node-cli"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/shivarm.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null},"funding":{"github":"shivam-sharma7"}},"created_at":"2024-11-06T15:45:30.000Z","updated_at":"2025-06-03T06:36:36.000Z","dependencies_parsed_at":"2024-12-31T09:28:36.387Z","dependency_job_id":"2ea95d49-22ec-40a7-8c88-bee5b9afc04a","html_url":"https://github.com/shivarm/node-peruse","commit_stats":null,"previous_names":["shivam-sharma7/node-peruse","shivarm/node-peruse"],"tags_count":6,"template":false,"template_full_name":null,"purl":"pkg:github/shivarm/node-peruse","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shivarm%2Fnode-peruse","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shivarm%2Fnode-peruse/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shivarm%2Fnode-peruse/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shivarm%2Fnode-peruse/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/shivarm","download_url":"https://codeload.github.com/shivarm/node-peruse/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shivarm%2Fnode-peruse/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28699372,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-23T17:25:48.045Z","status":"ssl_error","status_checked_at":"2026-01-23T17:25:47.153Z","response_time":59,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["analyze","dependencies","git","node-cli"],"created_at":"2025-04-22T12:12:58.896Z","updated_at":"2026-01-23T20:02:03.318Z","avatar_url":"https://github.com/shivarm.png","language":"JavaScript","funding_links":["https://github.com/sponsors/shivam-sharma7"],"categories":[],"sub_categories":[],"readme":"\u003cdiv align=\"center\"\u003e\n\n\u003ch1 style=\"color: #3498db;\"\u003enode-peruse\u003c/h1\u003e\n\u003ca href=\"https://github.com/shivam-sharma7/node-peruse/actions/workflows/ci.yml\"\u003e\u003cimg alt=\"Node.js CI\" src=\"https://github.com/shivam-sharma7/node-peruse/actions/workflows/ci.yml/badge.svg\"\u003e\u003c/a\u003e\n\u003ca href=\"https://www.npmjs.com/package/node-peruse\"\u003e\u003cimg alt=\"npm version\" src=\"https://img.shields.io/npm/v/node-peruse\"\u003e\u003c/a\u003e\n\u003ca href=\"https://github.com/shivam-sharma7/node-peruse/issues\"\u003e\u003cimg alt=\"GitHub issues\" src=\"https://img.shields.io/github/issues/shivam-sharma7/node-peruse\"\u003e\u003c/a\u003e\n\u003ca href=\"./LICENSE\"\u003e\u003cimg alt=\"GitHub license\" src=\"https://img.shields.io/github/license/shivam-sharma7/node-peruse\"\u003e\u003c/a\u003e\n \n\u003c/div\u003e\n\n\u003cbr/\u003e\n\nCLI tool designed to help Node.js developers analyze and review node.js project.\n\n## Key Features\n\n- Validate dockerfiles\n- Git commit best practices Validator\n- Check outdated dependencies\n- Check Node.js version\n- Check system memory usage\n- Analyze project dependencies\n\nThere are many more features to come, so keep on eye on this repository.\n\n## Download/install\n\n```bash\nnpm install -g node-peruse\n\nyarn add -g node-peruse\n\n```\n\nOnce installed, you can use node-peruse directly in your terminal.\n\n```bash\nnode-peruse \u003ccommand\u003e [options]\n```\n\n## Documentation\n\n### 1. Check or validate dockerfiles\n\nFind issues in your dockerfiles (e.g., Dockerfile, compose.yml), use the `--dockerfile` flag.\n\n```bash\nnode-peruse --dockerfile\n```\n\n### 2. Git commit best practices validator\n\nThis feature scans recent Git commits to ensure they follow best practices: (e.g., feat:, fix:, chore:, etc.)\n\n```bash\nnode-peruse --git\n```\n\n### 3. Check outdated dependencies\n\nTo check outdated packages in your project, use the `--outdated` flag.\n\n```bash\nnode-peruse --outdated\n```\n\n### 4. Check Node.js version\n\nTo check node.js version, use the `--node-check` flag.\n\n```bash\nnode-peruse --node-check\n```\n\n### 5. Check system memory usage\n\nTo check system memory is sufficient, use the `--memory-check` flag.\n\n```bash\nnode-peruse --memory-check\n```\n\n### 6. Check unused dependencies\n\nTo check unused dependencies in you node.js application, use the `--unused` flag.\n\n```bash\nnode-peruse --unused\n```\n\n### 7. Check your os architecture\n\nTo get os architecture, use the `--arch` flag.\n\n```bash\nnode-peruse --arch\n```\n\n### 8. Check your os name\n\nTo get your os name, use the `--name` flag.\n\n```bash\nnode-peruse --name\n```\n\n### 9. Analyze project dependencies\n\nUse the `--dependencies` option to analyze and list all dependencies in your project.\n\n```bash\nnode-peruse --dependencies\n```\n\n## Using Node-Peruse with npx\n\nTo run Node-Peruse without installing it globally, users can simply use:\n\n```bash\nnpx node-peruse \u003ccommand\u003e [options]\n```\n\nmean you can remove `node-peruse` with `npx` and run the command directly and it will work the same way.\n\n## Contributing\n\nSee [CONTRIBUTING.md](./CONTRIBUTING.md) for more information on how to contribute to node-peruse.\n\n## Support\n\n- Give a ⭐️ if this project helped you!\n- You can also sponsor me on [Github](https://github.com/sponsors/shivam-sharma7)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fshivarm%2Fnode-peruse","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fshivarm%2Fnode-peruse","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fshivarm%2Fnode-peruse/lists"}