![]() |
vor 2 Jahren | |
---|---|---|
.. | ||
index.d.ts | vor 2 Jahren | |
index.js | vor 2 Jahren | |
license | vor 2 Jahren | |
package.json | vor 2 Jahren | |
readme.md | vor 2 Jahren |
Get paths for storing things like data, config, cache, etc
Uses the correct OS-specific paths. Most developers get this wrong.
$ npm install env-paths
const envPaths = require('env-paths');
const paths = envPaths('MyApp');
paths.data;
//=> '/home/sindresorhus/.local/share/MyApp-nodejs'
paths.config
//=> '/home/sindresorhus/.config/MyApp-nodejs'
Type: string
Name of your project. Used to generate the paths.
Type: Object
Type: string
Default: 'nodejs'
Don't use this option unless you really have to!
Suffix appended to the project name to avoid name conflicts with native
apps. Pass an empty string to disable it.
Directory for data files.
Directory for config files.
Directory for non-essential data files.
Directory for log files.
Directory for temporary files.
MIT © Sindre Sorhus