Micro-frontends na prática

This page summarizes the projects mentioned and recommended in the original post on dev.to

Civic Auth - Auth in Less Than 5 Minutes
Civic Auth comes with multiple SSO options, optional embedded wallets, and user management — all implemented with just a few lines of code. Start building today.
www.civic.com
featured
InfluxDB high-performance time series database
Collect, organize, and act on massive volumes of high-resolution data to power real-time intelligent systems.
influxdata.com
featured
  1. vite-plugin-federation

    Module Federation for vite & rollup

  2. Civic Auth

    Auth in Less Than 5 Minutes. Civic Auth comes with multiple SSO options, optional embedded wallets, and user management — all implemented with just a few lines of code. Start building today.

    Civic Auth logo
  3. vite

    Next generation frontend tooling. It's fast!

    // 📂 container/vite.config.js import { defineConfig } from "vite" import react from "@vitejs/plugin-react" import federation from "@originjs/vite-plugin-federation" // https://vite.dev/config/ export default defineConfig({ plugins: [ react(), federation({ name: "container_app", remotes: { players: "http://localhost:5002/assets/remoteEntry.js" }, shared: { react: { singleton: true, requiredVersion: "^18.0.0" }, "react-dom": { singleton: true, requiredVersion: "^18.0.0" } } }) ], build: { modulePreload: false, target: "esnext", minify: false, cssCodeSplit: false } })

  4. soccer-dashboard-microfrontend

    A soccer dashboard created using micro frontend architecture with Module Federation.

NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts

  • Common Errors in Frontened Setup🛠 - Stock Management System

    1 project | dev.to | 6 Apr 2025
  • Designing and Building an Application with Anima, Figma, and React

    1 project | dev.to | 17 Mar 2025
  • Como funciona um Player de Vídeo? Uma abordagem em JavaScript

    2 projects | dev.to | 22 Feb 2025
  • Automate Your React App Deployment With JetBrains TeamCity

    2 projects | dev.to | 20 Feb 2025
  • Creating a Browser Extension in 2025

    2 projects | dev.to | 7 Feb 2025

Did you know that TypeScript is
the 1st most popular programming language
based on number of references?