Skip to content

Commit

Permalink
feat: add MF Vite Angular example (#4293)
Browse files Browse the repository at this point in the history
Co-authored-by: Zack Jackson <[email protected]>
  • Loading branch information
gioboa and ScriptedAlchemy authored Oct 10, 2024
1 parent 528ed7d commit 7fafb03
Show file tree
Hide file tree
Showing 29 changed files with 6,945 additions and 0 deletions.
27 changes: 27 additions & 0 deletions module-federation-vite-angular/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# 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?

# Module federation temp files
.__mf__temp
12 changes: 12 additions & 0 deletions module-federation-vite-angular/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:5173/ to see the amazing result

![screenshot](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-angular/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-angular/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" />
<link rel="stylesheet" href="/src/style.css" />
<title>Host</title>
</head>
<body>
<app-root></app-root>
<script type="module" src="/src/main.ts"></script>
</body>
</html>
32 changes: 32 additions & 0 deletions module-federation-vite-angular/host/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
"name": "module-federation-vite-angular-host",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite --port 5173",
"build": "vite build",
"preview": "vite preview --port 5173"
},
"dependencies": {
"@angular/animations": "^18.0.0",
"@angular/build": "^18.0.0",
"@angular/common": "^18.0.0",
"@angular/compiler": "^18.0.0",
"@angular/core": "^18.0.0",
"@angular/platform-browser": "^18.0.0",
"@angular/platform-browser-dynamic": "^18.0.0",
"@angular/platform-server": "^18.0.0",
"@module-federation/vite": "1.1.2",
"rxjs": "~7.8.0",
"tslib": "^2.3.0",
"zone.js": "~0.14.3"
},
"devDependencies": {
"@analogjs/vite-plugin-angular": "^1.7.3",
"@angular/build": "^18.0.0",
"@angular/compiler-cli": "^18.0.0",
"typescript": "5.4.5",
"vite": "^5.4.1"
}
}
Loading

0 comments on commit 7fafb03

Please sign in to comment.