
Security News
CVE Volume Surges Past 48,000 in 2025 as WordPress Plugin Ecosystem Drives Growth
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.
@glideapps/ts-helper
Advanced tools
This is a simple TypeScript tool we use at Glide for two purposes so far:
import/no-cycle rule
for this, but on our project it's both very slow and sometimes doesn't find existing cycles.We've only implemented as much as we needed to make this work on our codebase, so there might be cases it doesn't support, or on which it crashes on. If you run into such a case, please considering sending us a PR, or at least report the issue with a reproduction.
A few of the things that are missing, in particular:
exclude in the project configuration.import (and export), not require.type X = import("foo").Bar as regular "strong" imports.-p|--project TS-PROJECTAdds a project. TS-PROJECT can be either a directory with a tsconfig.json file in it, or the path to a TypeScript
config file. ts-helper will add project references recursively, but you can add more than one root project if you need
to.
-r|--root SOURCE-FILEAdds a root TypeScript source file. This file must be in one of the specified projects. You can add more than one.
-c|--detect-cyclesRuns cycle detection on all the source files reachable from the roots. If it detects a cycle it will print one of the cycles it found and exit with an error status.
Note that it only considers "strong" imports for cycle detection, vs type imports and lazy imports.
-o|--output FILENAMEOutputs a JSON file with the dependency graph.
-v|--verbosePrint messages when it's reading and processing projects.
In our main repository for Glide we have two TypeScript projects - one for the frontend and one for the backend. The frontend one has one root source file and the backend has two - one for the actual backend and one for a CLI. Here's how we run ts-helper to detect cycles in that codebase:
npx "@glideapps/ts-helper" \
-p ~/Work/glide/functions \
-r ~/Work/glide/functions/src/cli.ts \
-r ~/Work/glide/functions/src/index.ts \
-p ~/Work/glide/app \
-r ~/Work/glide/app/src/index.tsx \
-c
FAQs
Analyze TypeScript projects
The npm package @glideapps/ts-helper receives a total of 1,517 weekly downloads. As such, @glideapps/ts-helper popularity was classified as popular.
We found that @glideapps/ts-helper demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 33 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
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.

Security News
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.