Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@sensu/tsc-watch
Advanced tools
--watch
and a new onSuccess argumenttsc-watch
starts the tsc
(TypeScript compiler) with --watch
parameter, it also adds a new argument --onSuccess COMMAND
. this COMMAND
will be executed on every successful TypeScript compilation.
npm install tsc-watch --save-dev
tsc-watch server.ts --outDir ./dist --onSuccess "node ./dist/server.ts"
Notes:
COMMAND
will not run if the compilation failed.COMMAND
) will be terminated before creating a new one.tsc-watch
is using the currently installed TypeScript compiler.tsc-watch
is not changing the compiler, just adds the new arguments, compilation is the same, and all other arguments are the same.tsc-watch
was created to allow an easy dev process with TypeScript. Commonly used to restart a node server.FAQs
The TypeScript compiler with onSuccess command
The npm package @sensu/tsc-watch receives a total of 1 weekly downloads. As such, @sensu/tsc-watch popularity was classified as not popular.
We found that @sensu/tsc-watch 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’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.