Published
Edited
Sep 18, 2022
Importers
5 stars
Also listed in…
Observable Things
Insert cell
Insert cell
Insert cell
md`
> For example, ${await link('@martien/abc')} does not exists, while ${await link('@martien/x-matrix')} does exist.
`
Insert cell
Insert cell
md`
> For example, ${linkDelayed('@martien/abc')} does not exists, while ${linkDelayed('@martien/x-matrix')} does exist.
`
Insert cell
Insert cell
async function exists(slug) {
return fetch(`https://api.observablehq.com/${slug}.js`, {method: 'HEAD'})
.then(r => r.ok).catch(() => false);
}
Insert cell
Insert cell
function linkDelayed(slug) {
const el = html`<a>${slug}`;
exists(slug).then(found => { if(found) el.href = `/${slug}` });
return el;
}
Insert cell

One platform to build and deploy the best data apps

Experiment and prototype by building visualizations in live JavaScript notebooks. Collaborate with your team and decide which concepts to build out.
Use Observable Framework to build data apps locally. Use data loaders to build in any language or library, including Python, SQL, and R.
Seamlessly deploy to Observable. Test before you ship, use automatic deploy-on-commit, and ensure your projects are always up-to-date.
Learn more