From b8c096cb1615fb640b9c3dfd08fcf98d1a3913f8 Mon Sep 17 00:00:00 2001 From: Joe Carstairs <65492573+Sycamost@users.noreply.github.com> Date: Thu, 7 Mar 2024 20:33:06 +0000 Subject: Initialises project --- src/app.js | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 src/app.js (limited to 'src/app.js') diff --git a/src/app.js b/src/app.js new file mode 100644 index 0000000..3e1a28c --- /dev/null +++ b/src/app.js @@ -0,0 +1,16 @@ +const express = require('express'); +const { MessagingResponse } = require('twilio').twiml; + +const app = express(); + +app.post('/sms', (req, res) => { + const twiml = new MessagingResponse(); + + twiml.message('The Robots are coming! Head for the hills!'); + + res.type('text/xml').send(twiml.toString()); +}); + +app.listen(3000, () => { + console.log('Express server listening on port 3000'); +}); -- cgit v1.2.3