Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
quick-temp
Advanced tools
Create and remove temporary directories. Useful for build tools, like Broccoli
plugins. Smart about naming, and placing them in ./tmp
if possible, so you
don't have to worry about this.
npm install --save quick-temp
var quickTemp = require('quick-temp');
To make a temporary and assign its path to this.tmpDestDir
, call either one
of these:
quickTemp.makeOrRemake(this, 'tmpDestDir');
// or
quickTemp.makeOrReuse(this, 'tmpDestDir');
If this.tmpDestDir
already contains a path, makeOrRemake
will remove it
first and then create a new directory, whereas makeOrReuse
will be a no-op.
Both functions also return the path of the temporary directory.
An optional third argument lets you override the class-name component of the temporary directory name:
quickTemp.makeOrRemake(this, 'tmpDestDir', 'TreeMerger');
quickTemp.makeOrRemake(this, 'tmpDestDir', this.constructor.name); // default
To remove a previously-created temporary directory and all its contents, call
quickTemp.remove(this, 'tmpDestDir');
This will also assign this.tmpDestDir = null
. If this.tmpDestDir
is
already null or undefined, it will be a no-op.
0.1.8
FAQs
Create and remove temporary directories with minimal effort
The npm package quick-temp receives a total of 220,269 weekly downloads. As such, quick-temp popularity was classified as popular.
We found that quick-temp 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
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.