CheemsBot-MD2 icon indicating copy to clipboard operation
CheemsBot-MD2 copied to clipboard

Activate the bot

Open henryamerm opened this issue 1 year ago • 0 comments

// server.mjs import { createServer } from 'node:http';

const server = createServer((req, res) => { res.writeHead(200, { 'Content-Type': 'text/plain' }); res.end('Hello World!\n'); });

// starts a simple http server locally on port 3000 server.listen(3000, '127.0.0.1', () => { console.log('Listening on 127.0.0.1:3000'); });

// run with node server.mjs

henryamerm avatar Mar 19 '24 20:03 henryamerm