D3
OG
Old school D3 from simpler times
All examples
By author
By category
About
timhall
Full window
Github gist
svelte-router
<div id="app"></div> <script> import { Store } from 'svelte/store'; import { Router } from 'svelte-router'; import App from './App.html' const store = new Store(); const router = new Router(); router.connect(store); const app = new App({ target: document.getElementById('app'), store }); </script>