Skip to content

Commit

Permalink
feat: add MF Vite React example (#4291)
Browse files Browse the repository at this point in the history
* feat: add MF Vite React example

* fix: move lazy call

---------

Co-authored-by: Zack Jackson <[email protected]>
  • Loading branch information
gioboa and ScriptedAlchemy authored Oct 10, 2024
1 parent d974868 commit 024d07f
Show file tree
Hide file tree
Showing 30 changed files with 2,807 additions and 0 deletions.
12 changes: 12 additions & 0 deletions module-federation-vite-react/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# React host and remote

## Getting started

From this directory execute:

- npm run install:deps
- npm run preview

Open your browser at http://localhost:4173/ to see the amazing result

![screenshot](docs/screenshot.png)
Binary file added module-federation-vite-react/docs/screenshot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
26 changes: 26 additions & 0 deletions module-federation-vite-react/host/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*

node_modules
dist
dist-ssr
*.local

# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
.DS_Store
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?

.__mf__temp
14 changes: 14 additions & 0 deletions module-federation-vite-react/host/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Host</title>
</head>

<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>
23 changes: 23 additions & 0 deletions module-federation-vite-react/host/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"name": "module-federation-vite-react-host",
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite --port 4173",
"build": "tsc && vite build",
"preview": "npm run build && vite preview --port 4173"
},
"dependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rxjs": "^7.8.1"
},
"devDependencies": {
"@module-federation/vite": "1.0.0",
"@types/react": "18.2.79",
"@types/react-dom": "18.2.25",
"@vitejs/plugin-react": "4.2.1",
"typescript": "5.4.5",
"vite": "5.2.10"
}
}
Loading

0 comments on commit 024d07f

Please sign in to comment.