
Security News
Next.js Patches Critical Middleware Vulnerability (CVE-2025-29927)
Next.js has patched a critical vulnerability (CVE-2025-29927) that allowed attackers to bypass middleware-based authorization checks in self-hosted apps.
Jentil is a set of (typescript) tools to use in a monorepo.
jentil bootstrap
Add dependancies to tsconfig.base.json.
jentil run [command]
Run command on all packages or one if called relative from a app or lib.
---scope
jentil node [file]
Run or build node with all dependancies resolved.
---project
Path to tsconfig.json to use.
---watch
If this is given we watch & run, if not given we build only.
---out
File to compile to.
jentil convert
Collect packages from
Lerna is build for libraries publisched to npm. Jentil is for applications, no need for multiple package.json, which makes it easier to manage dependancies.
The problem with Nrwl is that you are dependent on what it supports. Jentil is only a set of tools you can use, you are in control of your build setup.
One example is a custom nextjs with typescript is not supported with nrwl: https://github.com/nrwl/nx/issues/1933
Also one big confuration is very hard to maintain: https://github.com/nrwl/nx/issues/2643
And run jentil bootstrap
everytime you add a app/library.
Make shoure you add "extends": "../../tsconfig.base.json",
to every tsconfig.json.
const withJentil = require("jentil/next")
const path = require('path')
module.exports = withJentil({
jentil: {
root: path.resolve(__dirname, "..", "..")
}
})
const getWebpack = require("jentil/webpack")
const path = require('path')
const { rule, alias } = getWebpack(path.resolve(__dirname, "..", ".."))
module.exports = {
module: {
rules: [
rule
]
}
//...
resolve: {
// configuration options
alias
}
};
FAQs
Jentil is a set of (typescript) tools to use in a monorepo.
The npm package jentil receives a total of 11 weekly downloads. As such, jentil popularity was classified as not popular.
We found that jentil 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.
Security News
Next.js has patched a critical vulnerability (CVE-2025-29927) that allowed attackers to bypass middleware-based authorization checks in self-hosted apps.
Security News
A survey of 500 cybersecurity pros reveals high pay isn't enough—lack of growth and flexibility is driving attrition and risking organizational security.
Product
Socket, the leader in open source security, is now available on Google Cloud Marketplace for simplified procurement and enhanced protection against supply chain attacks.