]> git.cworth.org Git - zombocom-ai/commitdiff
Write comments out to disk when the server exits
authorCarl Worth <cworth@cworth.org>
Wed, 7 Dec 2022 05:39:24 +0000 (21:39 -0800)
committerCarl Worth <cworth@cworth.org>
Wed, 7 Dec 2022 05:54:39 +0000 (21:54 -0800)
Which is half of what we need for fully persistent messages, (will
need to also load them at startup).

index.js

index 80526a3f6c879e14fb4a4055fe28504372f0d489..9279c877250c9e6055d142f9839dddd22dae775d 100644 (file)
--- a/index.js
+++ b/index.js
@@ -1,3 +1,5 @@
+const fs = require('fs');
+
 const express = require('express');
 const app = express();
 const http = require('http');
@@ -8,6 +10,23 @@ const port = 2122;
 
 comments = [];
 
+// Save comments when server is shutting down
+function cleanup() {
+    fs.writeFileSync('zombocom-state.json', JSON.stringify(comments), (error) => {
+        if (error)
+            throw error;
+    })
+}
+
+// And connect to that on either clean exit...
+process.on('exit', cleanup);
+
+// ... or on a SIGINT (control-C)
+process.on('SIGINT', () => {
+    cleanup();
+    process.exit();
+});
+
 app.get('/index.html', (req, res) => {
     res.sendFile(__dirname + '/index.html');
 });