.gitignore added
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / temp-dir / readme.md
1 # temp-dir [![Build Status](https://travis-ci.org/sindresorhus/temp-dir.svg?branch=master)](https://travis-ci.org/sindresorhus/temp-dir)
2
3 > Get the real path of the system temp directory
4
5 [The `os.tmpdir()` built-in doesn't return the real path.](https://github.com/nodejs/node/issues/11422) 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.
6
7
8 ## Install
9
10 ```
11 $ npm install --save temp-dir
12 ```
13
14
15 ## Usage
16
17 ```js
18 const tempDir = require('temp-dir');
19
20 console.log(tempDir);
21 //=> '/private/var/folders/3x/jf5977fn79jbglr7rk0tq4d00000gn/T'
22
23 console.log(require('os').tmpdir());
24 //=> '/var/folders/3x/jf5977fn79jbglr7rk0tq4d00000gn/T' // <= Symlink
25 ```
26
27
28 ## License
29
30 MIT © [Sindre Sorhus](https://sindresorhus.com)