
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
typescript-monorepo
Advanced tools
Documentation: typescript-monorepo.codecompose.dev
This is a personal quest for the perfect Typescript monorepo setup.
There is an accompanying article "My quest for the perfect TS monorepo" I'd like you to read that for context. Note: This article is now outdated and will be updated or rewritten for 2025 to reflect the current bundler-first architecture.
My current projects are based on Node.js, Next.js, and Firebase, so that is what I am focusing on. If you use a different stack, this can still be a great reference, as the approach itself does not depend on it.
.d.ts.map filesInstall PNPM with corepack, which is part of modern Node.js versions:
corepack enable (if you have not used it before)corepack prepare pnpm@latest --activateThen run pnpm install from the repository root.
To get started, execute the following 3 scripts with pnpm [script name] from
the root of the monorepo:
| Script | Description |
|---|---|
watch | Continuously builds everything using the Turborepo watch task, except for the web app, which has its own dev server |
emulate | Starts the Firebase emulators. |
dev | Starts the Next.js dev server to build the app on request. |
The web app should become available on http://localhost:3000, and the emulators UI on http://localhost:4000.
For more details on the architecture, Firebase setup, tooling, and more, see the documentation.
FAQs
A quest for the perfect Typescript monorepo
We found that typescript-monorepo demonstrated a healthy version release cadence and project activity because the last version was released less than 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.