Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Template rendering middleware for koa (using nunjucks).
$ npm install koa-view
const view = require('koa-view');
// Must be used before any router is used
app.use(view(__dirname + '/views'));
app.use(async function (ctx) {
ctx.state = {
session: ctx.session,
title: 'app'
};
await ctx.render('user', {
user: 'Coder'
});
});
More examples: tests
view(root, opts)
root
: (default views
) Views location. All view you render()
are relative to this path.opts
nunjucks configure optsopts.ext
: (default html
) Extension for your view// instead of this
await ctx.render('user.html')
// you can
await ctx.render('user')
To use koa-view
with koa@1, please use koa-view 1.x.
npm install koa-view@1 --save
MIT
FAQs
koa view use nunjucks
The npm package koa-view receives a total of 142 weekly downloads. As such, koa-view popularity was classified as not popular.
We found that koa-view demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.