Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mazkdevf/carrierdetect
With this JavaScript script you can easily find carrier of the phone number, this is using freecarrierlookup to fetch the data from.
https://github.com/mazkdevf/carrierdetect
carrier easy finder javascript phone
Last synced: about 5 hours ago
JSON representation
With this JavaScript script you can easily find carrier of the phone number, this is using freecarrierlookup to fetch the data from.
- Host: GitHub
- URL: https://github.com/mazkdevf/carrierdetect
- Owner: mazkdevf
- License: mit
- Created: 2023-11-27T22:11:08.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2023-11-27T22:15:01.000Z (12 months ago)
- Last Synced: 2024-05-01T18:49:44.820Z (6 months ago)
- Topics: carrier, easy, finder, javascript, phone
- Language: JavaScript
- Homepage: https://freecarrierlookup.com/
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# CarrierDetect
With this JavaScript script you can easily find carrier of the phone number, this is using freecarrierlookup to fetch the data from.## Example Code
```js
const identifier = new CarrierDetect();
let carrier = await identifier.fetchCarrier("", "");
```will return as:
```json
{
"success": "false / true (BOOL)",
"carrier": "Carrier Name / Null",
"err": "Error Text / OR NOT"
}
```