Quantcast
Viewing latest article 1
Browse Latest Browse All 6

JavaScript Widget Development Best Practices (Part 1: Overview)

Image may be NSFW.
Clik here to view.
a familiy of widgets of different sized

a familiy of widgets of different sizes

This is the beginning of a new article series where we will see best practices, common pitfalls, and “how to”s on creating JavaScript Widgets for external sites.

Throughout the examples we will be using:

But before we start let’s agree on the definitions:

What is a JavaScript Widget?

A JavaScript Widget can be defined as any type of functionality that is loaded from an external site (widget provider), to different sites (publishers) that include the widget code via a simple JavaScript include.

A JavaScript Widget may or may not include user interface components. An exmaple of a JavaScript Widget that does not contain a GUI counterpart is google analytics code that most of us is familiar with. Examples for widgets that include GUI components are the “vote“, “share“, “like“, and “add comment” widgets of social networks such as twitter and Facebook.

During the article series we will use the terms publisher and widget provider frequently. So it’s important to understand the distinction:

A widget provider is the source website where anyone can get a widget to their sites by adding a few lines of JavaScript that the provider provides (hence the name “provider“).

A publisher is a website that publishes these widgets (hence the name “publisher“) to enhance its functionality. The publish operation is nothing but simply adding the JavaScript snippets that the provider implements.

Stateful Widgets vs Stateless Widgets

Just like a regular website a JavaScript Widget can have state information (i.e. persist user-specific data in a session object on the widget provider servers); or it can be stateless. A stateless widget does not store data in widget provider‘s session.

To have a stateful widget, you will need third-party cookie support; which is one of the many challenges listed below.

Challenges in JavaScript Widget Development

There are many challenges one can face when developing a JavaScript Widget. The list below only covers the tip of the iceberg:

Versioning can be a Hassle

You need to define a consistent way to distribute different versions of your code to publishers. So that when you add a new functionality to your existing widget API, it does not break the working code on the publisher sites.

You have to enable different versions of your widget, so that you can introduce major changes in the newer versions of the API, and let publishers gradually upgrade their widgets at their convenience.

You Don’t Own the Execution Environment

When you don’t own the DOM, really careful you should be.
Yoda

The environment that the widget will run is totally unknown to the widget provider. Worse, the widget provider has almost zero control over that environment.

The execution environment can be a mobile device, a tablet, a power pc, a developer machine, an emulator or simulator, a really old browser… Our widget script has to run equally well in a wide spectrum of doctypes, platforms, and configurations (where some of these configurations can even be overridden by the user).

Moreover the publisher may include your script inside head…/head, or at the middle of body, or just before /body. And the publisher may include the widget script multiple times either intentionally, or by mistake.

Execution Environment is Shared

Developing a JavaScript Widget is like doing business in a public dorm, where the kitchen, bedroom and the bathroom is shared: “Anything” can happen.

Not only you don’t own the execution environment, but you also share that environment with guys whom you have no idea where they come from.

Our beloved widget has to happily coexist with other widgets, user-defined scripts, and copy/pasted JavaScript snippets (most of which are a pile of “junk”). Some of these script may even override standard JavaScript objects and methods that you rely on.

Therefore our widget has to do its best to:

  • Keep the global namespace clean and be a self-contained piece of code.
  • And try to protect itself from badly-written scripts that coexist with it. If not taken proper precautions, these scripts may adversley affect the behavior and performance of our widget.

Passing the Cross Domain Boundary

Since our widget is hosted on an external site, the good old cross domain restrictions apply.

We need to find ways to create a two-way communication channel between the publisher (www.publisher.com) site and the widget provider site (api.mywidget.com). We’ll explore different techniques to accomplish this in the followup articles.

Hack It Like A Thief: Act, but Don’t be Seen

That’s a corollary to the “you don’t own the context” item above.

Since you are a guest, behave like one.

The less our widget changes how provider site works, the better.

And there are several things we can do to decrease the effect of our widget script on the publisher site:

We’ll come to each and every single one of those items in the followup articles of this series.

Problems With Persisting and Retieving State

In a good old web application, the application state is persisted on the server in the Session object; and genrally “cookies” are used to pass a session ID around to share the session state while browsing different pages.

Since our widget code lives in a different domain than the publisher site, the client may impose restictions on saving cookies as well. By the time of this writing, Safari browser, for instance, disables third party cookies by default.

For our widget to share and persist state information with the widget api server we need to use third party cookies. And since we have no control over the environment our widget script executes (see above), our widget script may be executing in an environment where third-party cookie reading or writing may not be allowed.

There are ways to bypass this restriction too, which we’ll cover in the upcoming articles.

What’s Next?

That’s was a brief introduction on the things to watch out while architecting a JavaScript Widget.

We will explore everything mentioned in this post (and more) in the followup articles.

In the next of the series, we will be preparing our development environment. The interested may get their feet wet by starting to install node.js.

Do you develop external widgets to be distributed to a variety of publisher websites?

I’d love to hear your experiences.

Feel free to share your ideas and suggestions as comments.


Viewing latest article 1
Browse Latest Browse All 6

Trending Articles