Skip to content

Instantly share code, notes, and snippets.

@siexp
Created April 16, 2024 16:52
Show Gist options
  • Save siexp/1b557720901af071d9bfb2c1802c4a34 to your computer and use it in GitHub Desktop.
Save siexp/1b557720901af071d9bfb2c1802c4a34 to your computer and use it in GitHub Desktop.
const express = require('express');
const app = express();
const port = 3000;
app.get('/v1/health', (req, res) => {
res.send('Hello, Clockwise software!');
});
app.listen(port, () => {
console.log(`Server running on http://localhost:${port}`);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment