{"id":20629716,"url":"https://github.com/pb2204/mobile-number-tracker","last_synced_at":"2025-04-15T18:18:10.388Z","repository":{"id":198144170,"uuid":"700348131","full_name":"PB2204/Mobile-Number-Tracker","owner":"PB2204","description":"The Phone Tracker CLI is a JavaScript package that provides a set of functionalities related to phone numbers, service provider lookup, and random location coordinate generation. It aims to simplify tasks such as phone number validation, retrieving service provider information, and generating latitude and longitude coordinates.","archived":false,"fork":false,"pushed_at":"2023-10-04T14:09:19.000Z","size":12,"stargazers_count":44,"open_issues_count":1,"forks_count":9,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-04-12T10:57:21.173Z","etag":null,"topics":["collaborate","communityexchange","ghdesktop","github","github-campus-experts","github-codespaces","github-pages","gitkraken","gitlens","hacktoberfest","hacktoberfest-accepted","jetbrains","learn","microsoft","student-vscode"],"latest_commit_sha":null,"homepage":"https://www.npmjs.com/package/mobile-number-tracker","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/PB2204.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","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}},"created_at":"2023-10-04T12:32:53.000Z","updated_at":"2025-04-07T12:20:26.000Z","dependencies_parsed_at":null,"dependency_job_id":"36a7858f-a564-4a78-9b2b-1551f21f7f7e","html_url":"https://github.com/PB2204/Mobile-Number-Tracker","commit_stats":{"total_commits":4,"total_committers":2,"mean_commits":2.0,"dds":0.25,"last_synced_commit":"b4a61465d587887b2ec241af0c36211c2a8e9b51"},"previous_names":["pb2204/mobile-number-tracker"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PB2204%2FMobile-Number-Tracker","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PB2204%2FMobile-Number-Tracker/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PB2204%2FMobile-Number-Tracker/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PB2204%2FMobile-Number-Tracker/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/PB2204","download_url":"https://codeload.github.com/PB2204/Mobile-Number-Tracker/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248661708,"owners_count":21141450,"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","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":["collaborate","communityexchange","ghdesktop","github","github-campus-experts","github-codespaces","github-pages","gitkraken","gitlens","hacktoberfest","hacktoberfest-accepted","jetbrains","learn","microsoft","student-vscode"],"created_at":"2024-11-16T14:05:46.266Z","updated_at":"2025-04-15T18:18:10.372Z","avatar_url":"https://github.com/PB2204.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Phone Tracker CLI\n\n![License](https://img.shields.io/badge/license-MIT-blue.svg)\n\n## Description\n\nThe Phone Tracker CLI is a JavaScript package that provides a set of functionalities related to phone numbers, service provider lookup, and random location coordinate generation. It aims to simplify tasks such as phone number validation, retrieving service provider information, and generating latitude and longitude coordinates.\n\n## Project Structure\n\nThe project is organized into the following directories and files:\n\n```bash\ntracker/\n|-- bin/                            # Command Line Interface\n|   |-- cli.js                      # CLI script for using the package\n|-- src/\n|   |-- index.js                    # Main module for the package\n|   |-- validator.js                # Phone number validation functions\n|   |-- provider.js                 # Service provider information\n|   |-- locationGenerator.js        # Location coordinates generator\n|-- CODE_OF_CONDUCT.md\n|-- LEARN.md\n|-- CONTRIBUTING.md\n|-- package.json                    # Package configuration\n|-- README.md                       # Package documentation (you are here)\n|-- LICENSE                         # License file\n```\n\n## Motive of the Project\n\nThe primary goals of this project are to:\n\n- Simplify phone number validation.\n- Provide service provider lookup based on country codes.\n- Generate latitude and longitude coordinates for various use cases.\n\n## Features\n\n- Phone number validation.\n- Service provider information lookup.\n- Random location coordinate generation.\n- Command-line interface (CLI) for easy access to package functionality.\n\n## Usage\n\n### Installation\n\nTo install the Phone Tracker CLI package, use npm:\n\n```bash\nnpm install -g mobile-number-tracker\n```\n\n### Examples\n\n#### Validate a Phone Number\n\n```javascript\nconst phoneTracker = require(\"mobile-number-tracker\");\n\nconst phoneNumber = \"+19999999999\";\nconst isValid = phoneTracker.isValidPhoneNumber(phoneNumber);\nconsole.log(`Is Valid: ${isValid}`);\n```\n\n#### Get Service Provider Information\n\n```javascript\nconst phoneTracker = require(\"mobile-number-tracker\");\n\nconst countryCode = \"+1\";\nconst serviceProvider = phoneTracker.getServiceProvider(countryCode);\nconsole.log(`Country Code: ${countryCode}`);\nconsole.log(`Service Provider: ${serviceProvider}`);\n```\n\n#### Generate Coordinates\n\n```javascript\nconst phoneTracker = require(\"mobile-number-tracker\");\n\nconst randomLocation = phoneTracker.generateRandomLocation(-90, 90, -180, 180);\nconsole.log(`Latitude: ${randomLocation.latitude}`);\nconsole.log(`Longitude: ${randomLocation.longitude}`);\n```\n\n### Command Line Interface (CLI) User Guide\n\nThe package includes a CLI for easy access to its functionalities. Here are some usage examples:\n\n- Validate a phone number:\n\n  ```bash\n  phone-tracker -v +19999999999\n  ```\n\n- Get service provider information:\n\n  ```bash\n  phone-tracker -s +1\n  ```\n\n- Generate coordinates:\n\n  ```bash\n  phone-tracker -c\n  ```\n\n## License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n\n## Code of Conduct\n\nPlease review our [Code of Conduct](CODE_OF_CONDUCT.md) to understand our community guidelines.\n\n## Learn More\n\nExplore the [Learn.md](Learn.md) file for additional information and resources related to this project.\n\n## Contribution Details\n\nWe welcome contributions from the community! Please read our [Contribution Guidelines](CONTRIBUTING.md) for details on how to get started.\n\n## Developer Details\n\n- Project maintained by: [Pabitra Banerjee](https://pabitrabanerjee.me)\n- Contact: [Pabitra Banerjee](mailto:rockstarpabitra2204@gmail.com)\n- GitHub: [PB2204](https://github.com/PB2204)\n\n## Happy Coding ! 🚀","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpb2204%2Fmobile-number-tracker","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpb2204%2Fmobile-number-tracker","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpb2204%2Fmobile-number-tracker/lists"}