function engine(path, options, fn) {
  options.filename = path;

  fs.readFile(path, 'utf8', function(err, str) {
    if (err) return fn(err);