Skip to content

Instantly share code, notes, and snippets.

View njmyers's full-sized avatar
👨‍💻
Working

Nicholas Myers njmyers

👨‍💻
Working
  • New York City
View GitHub Profile
@DJviolin
DJviolin / nunjucks.js
Last active March 2, 2018 08:00
Native Nunjucks templating support for Koa v2
/*
USAGE:
import njk from './nunjucks';
// Templating - Must be used before any router
app.use(njk(path.join(__dirname, 'views'), {
extname: '.njk',
noCache: process.env.NODE_ENV !== 'production',
throwOnUndefined: true,