Files
FossFLOW/test-app.html
Stan 9021f5feca Migrate to monorepo structure
- Combined FossFLOW app and fossflow-lib into single repository
- Set up npm workspaces for managing both packages
- fossflow-lib uses Webpack for library build
- fossflow-app uses RSBuild for PWA application
- Added shared TypeScript configuration
- Simplified dependency management and development workflow
2025-08-13 22:06:26 +01:00

26 lines
775 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Test FossFLOW App</title>
</head>
<body>
<h1>Testing FossFLOW App</h1>
<iframe src="http://localhost:3000" width="100%" height="600px" style="border: 1px solid #ccc;"></iframe>
<script>
// Listen for console messages from the iframe
window.addEventListener('message', function(e) {
console.log('Message from app:', e.data);
});
// Check if app loads successfully
setTimeout(() => {
const iframe = document.querySelector('iframe');
try {
console.log('App loaded successfully');
} catch(e) {
console.error('Error accessing app:', e);
}
}, 2000);
</script>
</body>
</html>