app.js 205 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 'use strict'; // Here's a vanilla HTTP app to start, // but feel free to replace it with Express, Koa, etc var app = function(req, res) { res.end('Hello, Encrypted World!'); }; module.exports = app;