Socket
Socket
Sign inDemoInstall

tmp

Package Overview
Dependencies
0
Maintainers
1
Versions
36
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    tmp

Temporary file and directory creator


Version published
Weekly downloads
32M
decreased by-16.22%
Maintainers
1
Install size
10.2 kB
Created
Weekly downloads
 

Package description

What is tmp?

The tmp npm package is used for creating temporary files and directories in a Node.js environment. It helps manage and clean up temporary files automatically.

What are tmp's main functionalities?

Temporary File Creation

This feature allows you to create a temporary file. The library provides a callback with the path and file descriptor, and a cleanup callback to remove the file when it's no longer needed.

const tmp = require('tmp');
tmp.file(function _tempFileCreated(err, path, fd, cleanupCallback) {
  if (err) throw err;
  console.log('File: ', path);
  console.log('Filedescriptor: ', fd);
  // If we don't need the file anymore we could manually call the cleanupCallback
  // But that is not necessary if we didn't pass the keep option because the library will clean after itself.
  cleanupCallback();
});

Temporary Directory Creation

This feature allows you to create a temporary directory. Similar to temporary file creation, it provides a path to the directory and a cleanup callback.

const tmp = require('tmp');
tmp.dir(function _tempDirCreated(err, path, cleanupCallback) {
  if (err) throw err;
  console.log('Dir: ', path);
  // Manual cleanup
  cleanupCallback();
});

Synchronous File Creation

This feature allows for synchronous creation of a temporary file name. It returns the name directly without the need for a callback.

const tmp = require('tmp');
const name = tmp.tmpNameSync();
console.log('Temporary filename: ', name);

Synchronous Directory Creation

This feature allows for synchronous creation of a temporary directory. It returns an object with the directory name.

const tmp = require('tmp');
const dir = tmp.dirSync();
console.log('Temporary directory: ', dir.name);

Other packages similar to tmp

Readme

Source

Tmp

A simple temporary file and directory creator for node.js.

How to install

npm install tmp

Usage

var tmp = require('tmp');

tmp.file(function _tempFileCreated(err, path, fd) {
    if (err) throw err;

    console.log("File: ", path);
    console.log("Filedescriptor: ", fd);
});

tmp.dir(function _tempDirCreated(err, path) {
    if (err) throw err;

    console.log("Dir: ", path);
});

More advanced usage

var tmp = require('tmp');

tmp.file({ mode: 0644, prefix: 'prefix-', postfix: '.txt' }, function _tempFileCreated(err, path, fd) {
    if (err) throw err;

    console.log("File: ", path);
    console.log("Filedescriptor: ", fd);
});

tmp.dir({ mode: 0750, prefix: 'myTmpDir_' }, function _tempDirCreated(err, path) {
    if (err) throw err;

    console.log("Dir: ", path);
});

Keywords

FAQs

Last updated on 02 Sep 2011

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc