just to push an update at this point...
parent
9f2554056a
commit
b1e0cf7ddd
|
|
@ -49,11 +49,11 @@ const app = express();
|
||||||
|
|
||||||
app.get('/', (req, res) => {
|
app.get('/', (req, res) => {
|
||||||
res.end(`
|
res.end(`
|
||||||
<table>
|
<table style="width: 100%">
|
||||||
${clients.map(client => `
|
${clients.map(client => `
|
||||||
<tr>
|
<tr>
|
||||||
<td>${client.remoteAddress}</td>
|
<td><pre>${client.remoteAddress}</pre></td>
|
||||||
<td>${client.remoteIdentity}</td>
|
<td><pre>${client.remoteIdentity}</pre></td>
|
||||||
</tr>
|
</tr>
|
||||||
`)}
|
`)}
|
||||||
</table>
|
</table>
|
||||||
|
|
|
||||||
Reference in New Issue