https://github.com/fefeding/cn-region
中国省市名,编码
https://github.com/fefeding/cn-region
Last synced: 5 months ago
JSON representation
中国省市名,编码
- Host: GitHub
- URL: https://github.com/fefeding/cn-region
- Owner: fefeding
- Created: 2023-05-09T02:34:00.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-05-09T03:02:40.000Z (almost 3 years ago)
- Last Synced: 2025-09-27T00:09:16.463Z (6 months ago)
- Language: JavaScript
- Size: 192 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# cn-region
中国省市名,编码
## 通过编码获取地名
```js
const { code } = require('cn-region');
console.log(code[110000]);
```
## 通过地名获取
```js
const { code } = require('cn-region');
console.log(map.name['北京'])
```