source: frontend/node_modules/temp-dir/readme.md

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 12 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 797 bytes
RevLine 
[9af201e]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 temp-dir
12```
13
14
15## Usage
16
17```js
18const tempDirectory = require('temp-dir');
19
20console.log(tempDirectory);
21//=> '/private/var/folders/3x/jf5977fn79jbglr7rk0tq4d00000gn/T'
22
23console.log(require('os').tmpdir());
24//=> '/var/folders/3x/jf5977fn79jbglr7rk0tq4d00000gn/T' // <= Symlink
25```
26
27
28## License
29
30MIT © [Sindre Sorhus](https://sindresorhus.com)
Note: See TracBrowser for help on using the repository browser.