Sub-skill of echarts: CDN (+1).
Scanned 9/9/2026
Install to Claude Code
npx -y skills add vamseeachanta/workspace-hub --skill cdn --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Cdn?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/vamseeachanta-cdn-016062c9)More formats (shields.io, HTML) on the badges page.
---
name: echarts-cdn
description: 'Sub-skill of echarts: CDN (+1).'
version: 1.0.0
category: data-visualization
type: reference
scripts_exempt: true
---
# CDN (+1)
## CDN
```html
<script src="https://cdn.jsdelivr.net/npm/echarts@5/dist/echarts.min.js"></script>
```
## NPM
```bash
npm install echarts
```
```javascript
import * as echarts from 'echarts';
// Or import specific modules
import * as echarts from 'echarts/core';
import { LineChart } from 'echarts/charts';
import { GridComponent } from 'echarts/components';
import { CanvasRenderer } from 'echarts/renderers';
echarts.use([LineChart, GridComponent, CanvasRenderer]);
```
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!