Demo apps

We integrated Cord components in three common application types. Click on the cards below to see how we have added collaboration in these example use cases.


Put a Cord sidebar on any page!

To very quickly see how the Cord sidebar looks on any page, open your browser's JavaScript console and paste in the following code:

const client_auth_token = '<CLIENT_AUTH_TOKEN>';
const script = document.createElement('script');
script.src = 'https://app.cord.com/sdk/v1/sdk.latest.js';
script.addEventListener('load', () => {
  window.CordSDK.init({
    client_auth_token,
  });
  const sidebar = document.createElement('cord-sidebar');
  document.body.appendChild(sidebar);
});
document.body.appendChild(script);
Copy