christian 4571a14169 android fix | il y a 3 ans | |
---|---|---|
.. | ||
index.js | il y a 3 ans | |
license | il y a 3 ans | |
package.json | il y a 3 ans | |
readme.md | il y a 3 ans |
Get paths for storing things like data, config, cache, etc
$ npm install --save 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: 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