An open API service indexing awesome lists of open source software.

https://github.com/dweinstein/node-mnc-lookup

module for mobile network operator lookup
https://github.com/dweinstein/node-mnc-lookup

Last synced: 20 days ago
JSON representation

module for mobile network operator lookup

Awesome Lists containing this project

README

          

# SYNOPSIS
module for mobile network operator lookup

# USAGE
```shell
npm install mnc-lookup
```

```javascript
var mnc = require('mnc-lookup');
var id = 310070;
var res = mnc({id: id});
if (res) {
console.log("id %d => %s", id, res.name);
}
```