Sub-skill of chartjs: CDN (Quick Start) (+2).
Scanned 9/9/2026
Install to Claude Code
npx -y skills add vamseeachanta/workspace-hub --skill cdn-quick-start --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Cdn Quick Start?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/vamseeachanta-cdn-quick-start)More formats (shields.io, HTML) on the badges page.
---
name: chartjs-cdn-quick-start
description: 'Sub-skill of chartjs: CDN (Quick Start) (+2).'
version: 1.0.0
category: data-visualization
type: reference
scripts_exempt: true
---
# CDN (Quick Start) (+2)
## CDN (Quick Start)
```html
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
```
## NPM
```bash
npm install chart.js
```
```javascript
import Chart from 'chart.js/auto';
```
## ES Modules
```html
<script type="module">
import Chart from 'https://cdn.jsdelivr.net/npm/chart.js@4/+esm';
const ctx = document.getElementById('myChart');
new Chart(ctx, {...});
</script>
```
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!