JSPM

temp-dir

1.0.0
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 17447305
  • Score
    100M100P100Q218459F
  • License MIT

Get the real path of the system temp directory

Package Exports

  • temp-dir

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (temp-dir) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

temp-dir Build Status

Get the real path of the system temp directory

The os.tmpdir() built-in doesn't return the real path. That can cause problems when the returned path is a symlink, which is the case on macOS. Use this module to get the resolved path.

Install

$ npm install --save temp-dir

Usage

const tempDir = require('temp-dir');

console.log(tempDir);
//=> '/private/var/folders/3x/jf5977fn79jbglr7rk0tq4d00000gn/T'

console.log(require('os').tmpdir());
//=> '/var/folders/3x/jf5977fn79jbglr7rk0tq4d00000gn/T' // <= Symlink

License

MIT © Sindre Sorhus