Skip to content

Instantly share code, notes, and snippets.

@juliangruber
Created February 25, 2025 12:15
Show Gist options
  • Save juliangruber/648ab7097d81b58ced6ff049410bb8dc to your computer and use it in GitHub Desktop.
Save juliangruber/648ab7097d81b58ced6ff049410bb8dc to your computer and use it in GitHub Desktop.
import Fastify from 'fastify'
import pg from 'pg'
const app = Fastify()
const client = new pg.Client()
app.post('/:subnet/measurement', {
schema: {
body: {
type: 'boolean'
}
}
}, async (request, reply) => {
await client.query(`
UPDATE stats SET total = total + 1, successful = successful + $1 WHERE subnet = $2
`, [
request.body ? 1 : 0,
request.params.subnet
])
reply.send()
})
app.get('/:subnet', async (request, reply) => {
const { rows } = await client.query(
'SELECT total, successful FROM stats WHERE subnet = $1',
[request.params.subnet]
)
reply.send(rows[0])
})
app.listen(8000)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment