https://github.com/iconfont-cli/iconfont-parser
Fetch iconfont symbols and parse them to json
https://github.com/iconfont-cli/iconfont-parser
Last synced: 8 months ago
JSON representation
Fetch iconfont symbols and parse them to json
- Host: GitHub
- URL: https://github.com/iconfont-cli/iconfont-parser
- Owner: iconfont-cli
- License: mit
- Created: 2019-12-01T03:32:50.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2022-01-13T00:43:33.000Z (over 4 years ago)
- Last Synced: 2025-10-04T23:46:59.995Z (8 months ago)
- Language: TypeScript
- Size: 15.6 KB
- Stars: 4
- Watchers: 0
- Forks: 6
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# iconfont-parser
Transform iconfont symbol url to object data
```typescript
import { fetchXml } from 'iconfont-parser';
fetchXml(SYMBOL_URL).then((data) => {
console.log(data);
});
```