oui-data 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +17 -0
- package/index.json +34339 -0
- package/package.json +30 -0
package/README.md
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# oui-data
|
|
2
|
+
[](https://www.npmjs.org/package/oui-data) [](https://www.npmjs.org/package/oui-data)
|
|
3
|
+
> IEEE OUI database as JSON
|
|
4
|
+
|
|
5
|
+
## Example
|
|
6
|
+
|
|
7
|
+
```js
|
|
8
|
+
import data from "oui-data" assert { type: "json" };
|
|
9
|
+
|
|
10
|
+
console.log(data["203706"]);
|
|
11
|
+
//=> Cisco Systems, Inc
|
|
12
|
+
//=> 80 West Tasman Drive
|
|
13
|
+
//=> San Jose CA 94568
|
|
14
|
+
//=> United States
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
© [silverwind](https://github.com/silverwind), distributed under BSD licence
|