cloud-run-websockets/chat-without-sessions/index.js (
5
lines of code) (
raw
):
const server = require('./app.js'); const PORT = process.env.PORT || 8080; server.listen(PORT, () => console.log(`listening on port ${PORT}`) );