This repository has been archived on 2024-04-29. You can view files and clone it, but cannot push or open issues or pull requests.
node-fftcg/backend/tmpfront/index.html

29 lines
725 B
HTML

<!DOCTYPE html>
<html lang="de" dir="ltr">
<head>
<meta charset="utf-8">
<title></title>
</head>
<body>
Hello World
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
<script type="text/javascript">
const host = location.origin.replace(/^http/, 'ws')
const ws = new WebSocket(host)
ws.onmessage = msg => console.log(msg.data)
ws.onopen = () => {
console.log('Hai')
ws.send('Ping') // Send the message 'Ping' to the server
}
console.log(JSON.stringify(document.cookie))
axios.post('/test',{
x: 123
})
.then( (response) => {
console.log(response)
})
</script>
</body>
</html>