Get started with 6to5 CDN
MIT licensed
6to5 is a JS transpiler, converting ES6+ code to ES5.
Tags:- harmony
- classes
- modules
- let
- const
- var
- es6
- transpile
- transpiler
- 6to5
Stable version
Copied!
How to start using 6to5 CDN
<!DOCTYPE html>
<html>
<head>
<title>Get started with 6to5 CDN - cdnhub.io</title>
<script src="https://cdn.cdnhub.io/6to5/3.6.5/browser.js"></script>
</head>
<body>
<button id="transpile">Transpile ES6 code</button>
<script type="text/babel">
const button = document.getElementById('transpile');
button.addEventListener('click', () => {
const code = `
class Counter {
constructor() {
this.count = 0;
}
increment() {
this.count++;
console.log('Count:', this.count);
}
}
const counter = new Counter();
counter.increment();
counter.increment();
`;
const result = babel.transformFromAstSync(babel.parse(code), null, { presets: ['@babel/preset-es2015'] }).code;
console.log('Transpiled code:', result);
});
</script>
</body>
</html>
Copied!
Copied!
All versions
1.10.10
1.10.11
1.10.12
1.10.4
1.10.5
1.10.6
1.10.7
1.10.8
1.10.9
1.11.0
1.11.1
1.11.10
1.11.11
1.11.12
1.11.13
1.11.14
1.11.15
1.11.2
1.11.3
1.11.4
1.11.5
1.11.6
1.11.7
1.11.8
1.11.9
1.12.0
1.12.1
1.12.10
1.12.11
1.12.12
1.12.13
1.12.14
1.12.15
1.12.16
1.12.17
1.12.18
1.12.19
1.12.2
1.12.20
1.12.21
1.12.22
1.12.23
1.12.24
1.12.25
1.12.26
1.12.3
1.12.4
1.12.5
1.12.6
1.12.7
1.12.8
1.12.9
1.13.0
1.13.1
1.13.10
1.13.11
1.13.12
1.13.13
1.13.2
1.13.3
1.13.4
1.13.5
1.13.6
1.13.7
1.13.8
1.13.9
1.14.0
1.14.1
1.14.10
1.14.11
1.14.12
1.14.13
1.14.14
1.14.15
1.14.16
1.14.17
1.14.2
1.14.3
1.14.4
1.14.5
1.14.6
1.14.7
1.14.8
1.14.9
1.15.0
2.0.0
2.0.1
2.0.2
2.0.3
2.0.4
2.1.0
2.10.0
2.10.1
2.11.0
2.11.1
2.11.2
2.11.3
2.11.4
2.12.0
2.12.1
2.12.2
2.12.3
2.12.4
2.12.5
2.12.6
2.13.0
2.13.1
2.13.2
2.13.3
2.13.4
2.13.5
2.13.6
2.13.7
2.2.0
2.3.0
2.3.1
2.3.2
2.4.0
2.4.1
2.4.10
2.4.2
2.4.3
2.4.4
2.4.5
2.4.6
2.4.7
2.4.8
2.4.9
2.5.0
2.6.0
2.6.1
2.6.2
2.6.3
2.7.0
2.7.1
2.7.2
2.7.3
2.7.4
2.8.0
2.8.1
2.8.2
2.9.0
2.9.1
2.9.2
2.9.3
2.9.4
3.0.0
3.0.1
3.0.10
3.0.11
3.0.12
3.0.13
3.0.14
3.0.15
3.0.16
3.0.2
3.0.3
3.0.4
3.0.5
3.0.6
3.0.7
3.0.8
3.0.9
3.1.0
3.1.1
3.2.0
3.2.1
3.3.0
3.3.1
3.3.10
3.3.11
3.3.12
3.3.2
3.3.3
3.3.4
3.3.5
3.3.7
3.3.9
3.4.0
3.4.1
3.5.0
3.5.1
3.5.2
3.5.3
3.6.0
3.6.1
3.6.2
3.6.3
3.6.4
*** 3.6.5