Dart and Flutter Websites Consolidate Under Unified Jaspr Framework
Dart and Flutter websites migrate to Jaspr, a Dart-based web framework, unifying tech stack and reducing contribution friction.
Breaking: Dart and Flutter Websites Migrated to Jaspr, Eliminating Fragmented Tech Stack
In a major move to simplify their development workflow, the teams behind dart.dev, flutter.dev, and docs.flutter.dev have completed a full migration to Jaspr—an open-source, Dart-based web framework. The shift ends years of reliance on a mix of Node.js and Python tools, now replaced by a single stack built entirely in Dart.
“We wanted a unified, consistent developer experience where contributing to any of our sites only required Dart knowledge,” said a lead engineer on the project. “Jaspr made that possible.”
Old Setup Created Barriers
Previously, the documentation sites ran on Eleventy, a Node.js static-site generator, while flutter.dev relied on Wagtail, a Python-based CMS. This fragmentation forced contributors to master multiple toolchains—Node.js for one site, Python for another—even though many interactive components were already written in Dart.
“The separate ecosystems limited code sharing, increased setup friction, and made adding new interactive features—like richer code samples or quiz modules—an uphill battle,” the engineer added. “We often had to write one-off imperative DOM logic, which was inefficient.”
Background
Dart originated as a web language and remains central to cross-platform app development, yet Google’s own flagship sites for Dart and Flutter were not built with Dart. The inconsistency grew increasingly problematic as the sites evolved. After evaluating alternatives, the team chose Jaspr: a framework that supports client-side rendering, server-side rendering, and static site generation, all while staying true to Dart’s component model.
“Flutter skills transfer directly to Jaspr,” the team explained. “If you’ve written a Flutter widget, you can immediately understand Jaspr components.” A sample component looks like this:
class FeatureCard extends StatelessComponent { ... }
What This Means
For the Dart and Flutter community, the migration signals a long-term commitment to a cohesive developer experience. Contributors can now maintain any of the three websites using only Dart—no additional Node.js or Python setup required. The unified stack also simplifies adding interactive elements, such as quizzes and advanced code samples, without custom DOM hacks.
“This is a big step toward making our Web presence as efficient and accessible as the frameworks we promote,” the engineer noted. “We’re excited to see what the community builds on this foundation.”
Internal anchor link: Jump to Background section. External source: Jaspr framework website (link placeholder).