rtd.pub Docs
rtd.pub Home
  • Intro
  • Overview
  • Quickstart
  • Integrations
    • About integrations
    • Writing a plugin
    • Plugins
      • NATS
      • Kafka
      • Demo data
      • Socket
      • Webhook
  • Further reading
Powered by GitBook
On this page

Quickstart

PreviousOverviewNextAbout integrations

Last updated 6 days ago

rtd.pub consists of

  • An Excel add-in that provides the basis of the Excel integration. Only recent versions of Microsoft Excel running on Windows will be supported in the initial release.

  • Data plugins that act as a bridge from any streaming data source to the add-in

  • A process that hosts data plugins and interacts with the Excel add-in

In reality, all an end user sees is a new function called rtdpub.Sub that they can use to include streaming values in their workbooks.

Simple data plugins supporting NATS and Kafka are included.

You can bring your own plugins, which are . We provide SDKs for go, with Python coming shortly.

Get started in two minutes

  • Install the add-in and built-in plugins by downloading and running the installer (GA download coming soon, )

  • Restart Excel and create a new workbook

  • Add a formula to a cell: =rtdpub.Sub("counter", "test")

    • This means:

      • use the counter connector and pass it the parameter test

  • Observe the magic of the cell saying "1", then a second later, "2" ... and so on.

  • In another cell, add: =rtdpub.Sub("counter", "test2"). You now have two independent counters.

A counter (or two) is not that compelling but it does show the machinery working end to end. Follow on for more details, including

easy to implement in any language
contact us if interested in early access
how this plugin was implemented.
Page cover image