npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@microsoft/fast-element

v3.0.1

Published

A library for constructing Web Components

Downloads

1,070,947

Readme

FAST Element

License: MIT npm version

The fast-element library is a lightweight means to easily build performant, memory-efficient, standards-compliant Web Components. FAST Elements work in every major browser and can be used in combination with any front-end framework or even without a framework.

Installation

From NPM

To install the latest fast-element library using npm:

npm install --save @microsoft/fast-element

Within your JavaScript or TypeScript code, you can then import library APIs like this:

import { FASTElement } from '@microsoft/fast-element';

From CDN

A pre-bundled script that contains all APIs needed to build web components with FAST Element is available on CDN. You can use this script by adding type="module" to the script element and then importing from the CDN.

<!DOCTYPE html>
<html lang="en">
    <head>
        <script type="module">
          import { FASTElement } from "https://cdn.jsdelivr.net/npm/@microsoft/fast-element/dist/fast-element.min.js";

          // your code here
        </script>
    </head>
    <!-- ... -->
</html>

The markup above always references the latest release. When deploying to production, you will want to ship with a specific version. Here's an example of the markup for that:

<script type="module" src="https://cdn.jsdelivr.net/npm/@microsoft/[email protected]/dist/fast-element.min.js"></script>

:::note For simplicity, examples throughout the documentation will assume the library has been installed from NPM, but you can always replace the import location with the CDN URL. :::

:::tip Looking for a quick guide on building components? Check out our Cheat Sheet. :::

Browser Requirements

FAST Element v3 assumes a client-side browser Window runtime with native globalThis, Custom Elements, DOM, Shadow DOM, and requestAnimationFrame. The FAST object is now a module-scoped export (not on globalThis). If you need to support an older browser without globalThis, load that polyfill before importing @microsoft/fast-element.

The FAST Element client runtime is not intended to execute in workers, server-side JavaScript runtimes, or other non-window hosts. Use server-side rendering tools to produce HTML for the browser, and run FAST Element in the client window where custom elements connect, render, update, and hydrate.

Debug entrypoint

@microsoft/fast-element/debug.js exports enableDebug() instead of configuring FAST at import time. The development root export and debug rollup bundle still enable debug behavior automatically.

import { enableDebug } from "@microsoft/fast-element/debug.js";

enableDebug();

Export Sizes

Bundle sizes for each tree-shakeable export are tracked in SIZES.md and regenerated on every build. See the Export Sizes documentation page for the latest numbers.

Root Imports and Path Exports

The root @microsoft/fast-element entrypoint exports the FAST Element implementation APIs, including the element base class, kernel, controller, definition APIs, template APIs, binding helpers, directives, styles, and schema helpers. The FAST element registry is also available from @microsoft/fast-element/registry.js for focused definition lookups and fastElementRegistry.whenRegistered(tagName) registration promises. Declarative, hydration, context, and dependency injection APIs are available from their focused path exports.

Focused package path exports remain available for consumers that want to import a narrower entrypoint directly. The website's Path Exports page is generated from package.json and lists each supported path.

Dynamic Style Application

Import css, CSSTemplateTag, CSSValue, and style APIs such as ElementStyles, CSSDirective, cssDirective, ComposableStyles, HostBehavior, HostController, StyleStrategy, and StyleTarget from @microsoft/fast-element:

import { ElementStyles, css } from "@microsoft/fast-element";

When runtime state or external signals need to add or remove styles, create the ElementStyles with css and toggle it through this.$fastController.addStyles() / this.$fastController.removeStyles() from the element lifecycle or change handlers.

css templates remain static style definitions. Runtime CSS bindings and behavior-producing CSS directives are no longer supported; keep the condition on the element and toggle a separate ElementStyles instance through the controller when styles need to change.

Declarative HTML

FAST Element publishes its declarative HTML runtime from @microsoft/fast-element/declarative.js. This entrypoint exports the functional APIs for declarative templates: declarativeTemplate(), TemplateParser, and related configuration types. attributeMap() and observerMap() are available from their own focused path exports. The declarative runtime is pure at import time; declarative APIs lazily install only declarative debug messages. Hydration is separate and remains opt-in through enableHydration() from @microsoft/fast-element/hydration.js.

import { FASTElement } from "@microsoft/fast-element";
import { declarativeTemplate } from "@microsoft/fast-element/declarative.js";

class MyElement extends FASTElement {}

MyElement.define({
    name: "my-element",
    template: declarativeTemplate(),
});

declarativeTemplate() automatically defines FAST's internal native <f-template> publisher in the relevant registry, resolves the matching <f-template name="my-element">, and keeps the definition template concrete before define() resolves. If multiple matching <f-template> elements are connected, the first connected element supplies the template and later duplicates do not reassign it. Consumers should not import or define the <f-template> implementation directly.

Declarative schema behavior is enabled with define extensions:

import { attributeMap } from "@microsoft/fast-element/attribute-map.js";
import { declarativeTemplate } from "@microsoft/fast-element/declarative.js";
import { observerMap } from "@microsoft/fast-element/observer-map.js";

MyElement.define(
    {
        name: "my-element",
        template: declarativeTemplate(),
    },
    [attributeMap(), observerMap()],
);

attributeMap() creates @attr-style accessors for leaf bindings, and observerMap() creates deep observable accessors for discovered root properties. Declarative templates assign definition.schema during template resolution so these extensions always have schema data when used with declarativeTemplate(). For non-declarative/manual schema use, import Schema from @microsoft/fast-element and pass it on the element definition; observerMap() can also receive observerMap({ schema }) directly. When both extensions are present, attribute mapping runs before observer mapping.

Declarative utilities such as deepMerge are available from @microsoft/fast-element/declarative-utilities.js. See docs/declarative/syntax.md for declarative implementation details and the Declarative HTML docs for guides on writing f-templates, defining declarative elements, and server-side rendering. Declarative event bindings use $e for the DOM event object and $c for the execution context.

Prerendered Content Optimization

Hydration of prerendered content is opt-in. Call enableHydration() from @microsoft/fast-element/hydration.js before any FAST elements connect to activate the hydration path:

import { enableHydration } from "@microsoft/fast-element/hydration.js";

const hydration = enableHydration();

await hydration.whenHydrated();
console.log("hydration complete");

By default, hydration handles the initial prerendered batch and then no-ops after the active hydration batch completes. If your app streams Declarative Shadow DOM after the initial batch, keep the hydration hook active. In this mode, enableHydration().whenHydrated() intentionally remains pending because hydration never reaches a global completion point.

import { enableHydration, StopHydration } from "@microsoft/fast-element/hydration.js";

enableHydration({
    stopHydration: StopHydration.never,
});

When hydration is enabled and a FAST element connects with an existing shadow root (from server-side rendering or declarative shadow DOM), ElementController detects this and hydrates instead of re-rendering. Two properties on the controller let you inspect the result:

  • isPrerendered: Promise<boolean> — resolves true when the element had a declarative shadow root (DSD) at connect time, regardless of whether hydration ran.
  • isHydrated: Promise<boolean> — resolves true only when hydration actually ran successfully.

This enables several optimizations:

  • Hydration instead of re-render: The template uses hydrate() to map existing DOM nodes to binding targets rather than cloning new DOM.
  • Declarative template resolution: declarativeTemplate() waits for the matching <f-template> before define() completes, so connected elements hydrate with a concrete template.
  • Attribute skip: onAttributeChangedCallback() skips processing during initial upgrade when the element is prerendered, since server-rendered attribute values are already correct.
  • Binding skip: HTMLBindingDirective.bind() skips updateTarget for attribute and booleanAttribute aspect types when the view is prerendered.

Hydration Mismatch Diagnostics

If a prerendered DOM diverges from the client template in a way FAST cannot reconcile (the render() empty-boundary and repeat() count-mismatch cases recover silently), HydrationBindingError or HydrationTargetElementError is thrown. By default the message is a single line pointing at the opt-in hydrationDebugger(). Install the debugger to get a rich "Expected … / Received …" report with the SSR HTML snippet and structured expected / received fields on the thrown error:

import { enableHydration, hydrationDebugger } from "@microsoft/fast-element/hydration.js";

enableHydration({ debugger: hydrationDebugger() });

The debugger module is tree-shaken out of production hydration bundles when not imported, so the rich diagnostic helpers only land in builds that opt in.

Component authors can await both promises to distinguish prerendered content from successful hydration:

const controller = this.$fastController;
const prerendered = await controller.isPrerendered;
const hydrated = await controller.isHydrated;

if (prerendered && !hydrated) {
    // Had DSD but hydration wasn't enabled — client-side rendered
}

Custom directives can also await controller.isPrerendered and controller.isHydrated (both Promise<boolean> on the ViewController interface) to determine how the view's content was rendered.

Define Extensions

The static define() method on a FASTElement subclass accepts an optional second argument — an array of extension callbacks that are invoked with the resolved element definition before the element is registered with the platform. This enables a plugin pattern where reusable behaviors can hook into element registration.

import { FASTElement, type FASTElementExtension } from "@microsoft/fast-element";

function logger(): FASTElementExtension {
    return definition => {
        console.log(`Defining element: ${definition.name}`);
    };
}

class MyComponent extends FASTElement {
    // component code
}

MyComponent.define({ name: "my-component", template, styles }, [logger()]);

Each extension receives the full FASTElementDefinition, which includes the resolved element name, type, template, styles, and attribute metadata. Extensions run before customElements.define(), so any setup they perform is available when existing DOM elements are upgraded.