Get started with chrono-node CDN
MIT licensed
The Chrono-Node library is a JS implementation for working with blockchain time and transactions.
Tags:- parser
- time
- npl
- chrono
Stable version
Copied!
How to start using chrono-node CDN
<!DOCTYPE html>
<html>
<head>
<title>Get started with chrono-node CDN - cdnhub.io</title>
<script src="https://cdn.cdnhub.io/chrono-node/2.7.5/chrono.min.js"></script>
</head>
<body>
<button id="start">Start</button>
<button id="stop">Stop</button>
<div id="timer"></div>
<script>
const startButton = document.getElementById('start');
const stopButton = document.getElementById('stop');
const timer = document.getElementById('timer');
let chrono;
startButton.addEventListener('click', () => {
chrono = new Chrono({
template: 'M:S.MS',
callbacks: {
onProgress: (time, label) => {
timer.textContent = time.toString();
},
},
});
chrono.start();
});
stopButton.addEventListener('click', () => {
chrono.stop();
});
</script>
</body>
</html>
All versions
0.0.1
0.0.2
0.0.3
0.0.4
0.1.1
0.1.10
0.1.11
0.1.2
0.1.3
0.1.4
0.1.5
0.1.6
0.1.7
0.1.8
0.1.9
1.0.0
1.0.1
1.0.10
1.0.11
1.0.2
1.0.3
1.0.4
1.0.5
1.0.6
1.0.7
1.0.8
1.0.9
1.1.0
1.1.1
1.1.2
1.1.3
1.1.4
1.1.5
1.1.6
1.2.0
1.2.1
1.2.2
1.2.3
1.2.4
1.2.5
1.3.1
1.3.11
1.3.2
1.3.3
1.3.4
1.3.5
1.4.2
1.4.3
1.4.4
1.4.5
1.4.6
1.4.7
1.4.8
1.4.9
2.0.0
2.0.1
2.0.2
2.0.3
2.1.0
2.1.1
2.1.10
2.1.11
2.1.2
2.1.3
2.1.4
2.1.5
2.1.6
2.1.7
2.1.8
2.1.9
2.2.0
2.2.1
2.2.2
2.2.3
2.2.4
2.2.5
2.2.6
2.2.7
2.3.0
2.3.1
2.3.2
2.3.3
2.3.4
2.3.5
2.3.6
2.3.7
2.3.8
2.3.9
2.4.1
2.4.2
2.5.0
2.5.1
2.6.0
2.6.0-0
2.6.0-1
2.6.1
2.6.2
2.6.3
2.6.4
2.6.5
2.6.6
2.7.0
2.7.1
2.7.2
2.7.3
2.7.4
2.7.5
2.7.6
*** 2.7.7