Research
Security News
Kill Switch Hidden in npm Packages Typosquatting Chalk and Chokidar
Socket researchers found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.
koa-i18next-middleware
Advanced tools
An i18next middleware for koa2 framework.
npm i -S koa-i18next-middleware
const i18next = require('i18next');
const i18m = require('koa-i18next-middleware');
// add custom detector.
const lngDetector = new i18m.LanguageDetector();
lngDetector.addDetector({
name: 'mySessionDetector',
lookup(ctx, options) {
let found;
if (options.lookupSession && ctx && ctx.sessions) {
found = ctx.sessions[options.lookupMySession];
}
return found;
},
cacheUserLanguage(ctx, lng, options = {}) {
if (options.lookupMySession && ctx && ctx.session) {
ctx.session[options.lookupMySession] = lng;
}
}
});
i18next.use(lngDetector).init(
{
fallbackLng: 'en',
preload: ['en', 'es'],
resources: {
en: {
translation: {
key: 'hello world'
}
},
es: {
translation: {
key: 'es hello world es'
}
}
},
detection: {
order: [
'querystring',
'path',
/*'cookie', 'header',*/ 'session',
'mySessionDetector'
],
lookupQuerystring: 'lng',
lookupParam: 'lng', // for route like: 'path1/:lng/result'
lookupFromPathIndex: 0,
// currently using ctx.cookies
lookupCookie: 'i18next',
// cookieExpirationDate: new Date(), // default: +1 year
// cookieDomain: '', // default: current domain.
// currently using ctx.session
lookupSession: 'lng',
// other options
lookupMySession: 'lang',
// cache user language
caches: ['cookie', 'mySessionDetector']
}
},
(err, t) => {
// initialized and ready to go!
const hw = i18next.t('key'); // hw = 'hello world'
console.log(hw);
}
);
app.use(
i18m.getHandler(i18next, {
locals: 'locals',
ignoreRoutes: ['/no-lng-route']
})
);
MIT © steven MIT © i18next-express-middleware
FAQs
An i18next middleware for koa2 framework.
The npm package koa-i18next-middleware receives a total of 1,296 weekly downloads. As such, koa-i18next-middleware popularity was classified as popular.
We found that koa-i18next-middleware demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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.
Research
Security News
Socket researchers found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.
Security News
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.