Ada.is

The blog of Ada Rose Cannon

Raindrops on roses, whiskers on kittens, declarative web APIs and truly serverless web endpoints

Raindrops on roses, whiskers on kittens, declarative web APIs and truly serverless web endpoints

Here are a few of my favourite things you may not have heard of.

This article introduces some cool things I have been playing with recently that have excited me. The thread which ties them together is getting communities of sites to work together across domains, but powered by the front end.

The three topics I will cover are:

Each one provides a new way to think about how websites and APIs can be built to work together.

Part 1. Indie Auth

The technology which epitomises the spirit of this blog post is IndieAuth. IndieAuth is an authentication service which is based upon the concepts of URL ownership and the humble tag and powered by OAuth.

If two websites link to each other using an tag with the rel=”me” attribute set then they are establishing that they both represent the same individual. E.g.

On twitter
<a rel="me" href="https://ada.is"></a>

On ada.is
<a rel="me" href="https://twitter.com/AdaRoseCannon"></a>

If one of those sites provides OAuth authentication then a user that can log into one website is also the owner of the other.

E.g. My website https://ada.is links to https://twitter.com/AdaRoseCannon and vice versa. Twitter provides OAuth. So if I can prove I own that Twitter account by signing in with Twitter’s OAuth I also prove I own ada.is.

This allows me to authenticate by using my domain name, without exposing any permissions to any of my accounts.

Twitter and github are already set up to do this, check the HTML on twitter for the link back to someone’s website from their profile:

Demo: https://indie-auth.glitch.me/

Demo Code: https://glitch.com/edit/#!/indie-auth?path=index.html:1:0

Comlink is a very lightweight library for exposing APIs between threads in the web.

It works by proxying the methods and responses using objects or strings. This can even allow you to run APIs in a different web page in an iframe or even on a different computer using WebRTC!!

Comlink enables you to use JavaScript asynchronously between two contexts without worrying about the messaging channel.

  1. You could use it between two threads on the same web page. E.g. Between a web worker and the client.

  2. You could use it between two web pages on the same machine — even a third party website!! E.g. Loading a third party web page in an iframe and use its Comlink-exposed API to control it.

  3. You could use it between two machines with Comlink proxying the data over WebRTC.

There are examples for these use cases on the Github page. But the second option excites me the most.

Comlink allows you to build an API exposed through a hidden iframe so it can work when there is no Network by leveraging service workers!!

An API can be written and exposed on a normal web page and exposed using comlink to be accessed via iframes. This page can be made available offline by caching it in the service worker.

This API can even be used by 3rd party websites because comlink relies on postmessage which works between different origins!

Paul Kinlan from Google describes it in some detail here: https://paul.kinlan.me/the-web-is-my-api/

I have built a demo on Glitch here you can remix and make your own API: https://glitch.com/~comlink-template Glitch The community that helps you build the app or bot of your dreamsglitch.com

The power of this pattern astounds me. It works well for APIs which can store information locally and expose an API to be used by the same user which is storing the data.

The kind of API this is useful for is when the user is storing some data on your server for other websites to get. Some potential examples:

Be careful! It is important to balance user privacy and API power.

For example Facebook or Twitter could expose an API to expose the user’s name or online handle to enable seamless integration with third party websites. Information like this maybe harmful to the user if exposed.

When we use Comlink to expose information it is best to write minimal APIs to expose any data, so the API can’t be used by a malicious 3rd party to get information like email addresses or real names.

Part 3. APIs as Web Components

APIs on the Web may take many forms such as:

Often the consumer of APIs doesn’t actually care how the API gets its data, they just want a way to interact with it and get some data out.

Web Components allows us to provide a uniform interface to our APIs through HTML. With a common way of configuration, exposing methods and returning data.

Configuration can be done by setting attributes.

Methods can be placed on the Element’s prototype.

Output can be via emitting custom events or by updating the shadow dom.

An advantage of using HTML is that authoring HTML has been a problem which has been solved many times since the dawning of the web.

An API exposed as a web component can be integrated into any website whether it is static HTML, a PHP/Ruby/Node backend framework or a complex client side rendering solution like React or Angular.

On a running page JavaScript can be used to attach one API to another, i.e. listen for events on one element and call a method on another.

A complex API which may have a lot of potential configuration can rely on its children to describe it. Much like a <ul> element needs to contain <li>, a parent API element can change its behaviour based on its children.

A-Frame (https://aframe.io) is a good example of this. A-Frame is a Web Component abstraction of Three.js, it provides many elements for describing a 3D scene.

The element sets up a render loop and a canvas. The child entities such as and don’t have any effect on the DOM but they do add additional elements to the scene and can be dynamically updated using, for example el.setAttribute('width', '3'); .

There are many 3rd party components for A-Frame. Some make network requests or run complex physics in a web worker but their interface is entirely exposed via HTML. So when we are composing our web page we don’t need to worry about how it works underneath, it is kept behind the scenes.

Another great example is Lea Verou’s Mavo which allows us to make reactive Web Applications using only HTML. This is very powerful as it enables non-developers to produce modern Web Applications just as HTML/CSS enables anyone to produce static web pages.

I have made a very small library I use to help me author Web Components. It provides some callbacks to help with attribute parsing:

https://gist.github.com/AdaRoseCannon/60dc448b1124bcfb7be14209b8124f5c?ts=2

How we can learn from these

As API authors we can design our APIs to take inspiration from these technologies.

Allow user privacy, by limiting the data we gather, we can protect our users and reduce our own liability for holding user data. Indie Auth allows us to authenticate a user using only their domain name. Client Side APIs allow us to provide APIs which only expose select information without requiring us to give a third party information like our username or email address.

Working together as a web community, using Client Side APIs, we can let other websites work better with our services. We can lift each other up together by giving more seamless experiences. With APIs as Web Components we allow our APIs to be very quickly integrated into existing CMSs and Frameworks because our components are HTML and each web site has their own solution for authoring the HTML.

Enabling our APIs to work for anyone, HTML is a very forgiving language and very accessible to new users. By having our API code be small chunks of HTML which can be copy pasted into existing web sites anyone can start using them without needing to be an expert.

Thanks for reading :)