Demo for query storing

Change-Id: I947bcac841992c3f6cfd01ab337c265b0d01cb70
diff --git a/node_modules/jpegtran-bin/cli.js b/node_modules/jpegtran-bin/cli.js
new file mode 100644
index 0000000..a1842cf
--- /dev/null
+++ b/node_modules/jpegtran-bin/cli.js
@@ -0,0 +1,9 @@
+#!/usr/bin/env node
+'use strict';
+const {spawn} = require('child_process');
+const jpegtran = require('.');
+
+const input = process.argv.slice(2);
+
+spawn(jpegtran, input, {stdio: 'inherit'})
+	.on('exit', process.exit);