mirror of
https://github.com/stan-smith/FossFLOW.git
synced 2025-12-23 22:48:57 -05:00
- 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
26 lines
775 B
HTML
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> |