{"id":28542259,"url":"https://github.com/vinodnimbalkar/dinvishesh","last_synced_at":"2025-08-18T16:04:47.174Z","repository":{"id":35397957,"uuid":"215794462","full_name":"vinodnimbalkar/dinvishesh","owner":"vinodnimbalkar","description":"🗓️ A simple NPM package that returns Marathi dinvishesh.","archived":false,"fork":false,"pushed_at":"2024-11-10T15:02:51.000Z","size":2518,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-08-11T17:23:45.047Z","etag":null,"topics":["dinvishesh","javascript","marathi","nodejs","npm-package","returns-dinvishesh"],"latest_commit_sha":null,"homepage":"https://www.npmjs.com/package/dinvishesh","language":"TypeScript","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/vinodnimbalkar.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"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}},"created_at":"2019-10-17T13:05:51.000Z","updated_at":"2024-11-10T15:02:55.000Z","dependencies_parsed_at":"2023-01-15T20:15:32.721Z","dependency_job_id":"5f419b39-aa98-4527-8d97-0872c0d26347","html_url":"https://github.com/vinodnimbalkar/dinvishesh","commit_stats":{"total_commits":38,"total_committers":3,"mean_commits":"12.666666666666666","dds":0.4736842105263158,"last_synced_commit":"c8091abbc5d88aa915116f39baa5c80901a9bf5c"},"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/vinodnimbalkar/dinvishesh","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vinodnimbalkar%2Fdinvishesh","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vinodnimbalkar%2Fdinvishesh/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vinodnimbalkar%2Fdinvishesh/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vinodnimbalkar%2Fdinvishesh/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/vinodnimbalkar","download_url":"https://codeload.github.com/vinodnimbalkar/dinvishesh/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vinodnimbalkar%2Fdinvishesh/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":271019390,"owners_count":24685678,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-18T02:00:08.743Z","response_time":89,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["dinvishesh","javascript","marathi","nodejs","npm-package","returns-dinvishesh"],"created_at":"2025-06-09T20:31:06.519Z","updated_at":"2025-08-18T16:04:47.126Z","avatar_url":"https://github.com/vinodnimbalkar.png","language":"TypeScript","funding_links":["https://www.buymeacoffee.com/vinodnimbalkar"],"categories":[],"sub_categories":[],"readme":"# DinVishesh\n\n[![Build Status](https://travis-ci.org/vinodnimbalkar/dinvishesh.svg?branch=master)](https://travis-ci.org/vinodnimbalkar/dinvishesh)\n[![Coverage Status](https://coveralls.io/repos/github/vinodnimbalkar/dinvishesh/badge.svg?branch=master)](https://coveralls.io/github/vinodnimbalkar/dinvishesh?branch=master)\n\nA Node.js package that provides \"On This Day in History\" (dinvishesh) information in Marathi. Get historical events, births, and deaths for any date to enhance your knowledge of Indian history and culture.\n\n## Features\n\n- Get historical data for any specific date\n- Three categories of information:\n  - **Janm** (Births) - Notable personalities born on a date\n  - **Mrutyu** (Deaths) - Notable personalities who passed away on a date\n  - **Ghatana** (Events) - Significant historical events that occurred on a date\n- Flexible API with multiple ways to query data\n- Data available in Marathi language\n- Zero dependencies\n\n## Installation\n\n```bash\nnpm install dinvishesh\n```\n\n## API Reference\n\n### 1. dinVisheshToday()\n\nReturns historical information for the current date.\n\n```javascript\nconst dinvishesh = require('dinvishesh');\nconst today = dinvishesh.dinVisheshToday();\n```\n\nExample response:\n```javascript\n{\n  \"janm\": [\n    \"१८८१: स्पॅनिश चित्रकार आणि शिल्पकार पाब्लो पिकासो यांचा जन्म.\",\n    \"१९३७: संगीत समीक्षक डॉ. अशोक रानडे यांचा जन्म.\"\n  ],\n  \"mrutyu\": [...],\n  \"ghatana\": [...]\n}\n```\n\n### 2. dinVishesh(category, month, day)\n\nRetrieve historical information for a specific date and category.\n\n**Parameters:**\n- `category` (optional): 'janm', 'mrutyu', or 'ghatana' (default: 'janm')\n- `month` (optional): Month name in lowercase English (e.g., 'january')\n- `day` (optional): Day of month as string (e.g., '25')\n\n```javascript\nconst births = dinvishesh.dinVishesh('janm', 'january', '11');\n```\n\n### 3. dinVisheshByCategory(category)\n\nGet all entries for a specific category organized by month.\n\n**Parameters:**\n- `category`: 'janm', 'mrutyu', or 'ghatana'\n\n```javascript\nconst allBirths = dinvishesh.dinVisheshByCategory('janm');\n```\n\n### 4. dinVisheshAll()\n\nRetrieve the complete database of historical information.\n\n```javascript\nconst completeData = dinvishesh.dinVisheshAll();\n```\n\n## Usage Examples\n\n```javascript\nconst dinvishesh = require('dinvishesh');\n\n// Get today's historical events\nconst today = dinvishesh.dinVisheshToday();\nconsole.log('Today in history:', today.ghatana);\n\n// Get births on a specific date\nconst births = dinvishesh.dinVishesh('janm', 'january', '11');\nconsole.log('Born on January 11:', births);\n\n// Get all deaths by month\nconst deaths = dinvishesh.dinVisheshByCategory('mrutyu');\nconsole.log('Deaths in January:', deaths.january);\n```\n\nFor more examples, check the `examples` directory in the repository:\n\n```bash\ngit clone https://github.com/vinodnimbalkar/dinvishesh.git\ncd dinvishesh/example\nnpm install\nnode demo.js\n```\n\n## Contributing\n\nContributions are welcome! Here's how you can help:\n\n1. Fork the repository\n2. Create your feature branch (`git checkout -b feature/amazing-feature`)\n3. Commit your changes (`git commit -m 'Add some amazing feature'`)\n4. Push to the branch (`git push origin feature/amazing-feature`)\n5. Open a Pull Request\n\nPlease ensure your PR includes appropriate tests and documentation updates.\n\n## Support the Project\n\nIf you find this package useful, consider supporting the development:\n\n\u003ca href=\"https://www.buymeacoffee.com/vinodnimbalkar\" target=\"_blank\"\u003e\u003cimg src=\"https://www.buymeacoffee.com/assets/img/custom_images/orange_img.png\" alt=\"Buy Me A Coffee\" style=\"height: auto !important;width: auto !important;\" \u003e\u003c/a\u003e\n\n## License\n\nMIT © [Vinod Nimbalkar](https://github.com/vinodnimbalkar/dinvishesh/blob/master/LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvinodnimbalkar%2Fdinvishesh","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvinodnimbalkar%2Fdinvishesh","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvinodnimbalkar%2Fdinvishesh/lists"}