UNPKG

peerpigeon

Version:

WebRTC-based peer-to-peer mesh networking library with intelligent routing and signaling server

31 lines (28 loc) 823 B
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>PeerPigeon Vue 3 - Complete Feature Demo</title> <link rel="icon" type="image/png" href="../browser/assets/images/favicon.png"> <style> * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); min-height: 100vh; } #app { min-height: 100vh; } </style> </head> <body> <div id="app"></div> <script type="module" src="/src/main.js"></script> </body> </html>