Simple image host.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.node.js 213B

123456789
  1. var fs = require("fs");
  2. module.exports = function(ctx) {
  3. var id = ctx.req.url.split("?")[1]
  4. .replace(/\..*/, "");
  5. var readStream = fs.createReadStream(ctx.conf.dir.imgs+"/"+id);
  6. readStream.pipe(ctx.res);
  7. }