Skip to content

Commit

Permalink
Update dependencies, refactor TypeScript definition to CommonJS compa…
Browse files Browse the repository at this point in the history
…tible export (#64)
  • Loading branch information
BendingBender authored and sindresorhus committed Apr 1, 2019
1 parent c489956 commit 277d70a
Show file tree
Hide file tree
Showing 4 changed files with 144 additions and 120 deletions.
241 changes: 133 additions & 108 deletions index.d.ts
Original file line number Diff line number Diff line change
@@ -1,153 +1,178 @@
/// <reference types="node"/>

export interface Options<T> {
/**
* Config used if there are no existing config.
*/
readonly defaults?: {[key: string]: T};
declare namespace Conf {
interface Options<T> {
/**
Config used if there are no existing config.
*/
readonly defaults?: {[key: string]: T};

/**
* Name of the config file (without extension).
*
* Useful if you need multiple config files for your app or module. For example, different config files between two major versions.
*
* @default 'config'
*/
readonly configName?: string;
/**
Name of the config file (without extension).
/**
* You only need to specify this if you don't have a `package.json` file in your project. Default: The name field in the `package.json` closest to where `conf` is imported.
*/
readonly projectName?: string;
Useful if you need multiple config files for your app or module. For example, different config files between two major versions.
/**
* **You most likely don't need this. Please don't use it unless you really have to.**
*
* The only use-case I can think of is having the config located in the app directory or on some external storage. Default: System default user [config directory](https://github.com/sindresorhus/env-paths#pathsconfig).
*/
readonly cwd?: string;
@default 'config'
*/
readonly configName?: string;

/**
* Note that this is **not intended for security purposes**, since the encryption key would be easily found inside a plain-text Node.js app.
*
* Its main use is for obscurity. If a user looks through the config directory and finds the config file, since it's just a JSON file, they may be tempted to modify it. By providing an encryption key, the file will be obfuscated, which should hopefully deter any users from doing so.
*
* It also has the added bonus of ensuring the config file's integrity. If the file is changed in any way, the decryption will not work, in which case the store will just reset back to its default state.
*
* When specified, the store will be encrypted using the [`aes-256-cbc`](https://en.wikipedia.org/wiki/Block_cipher_mode_of_operation) encryption algorithm.
*/
readonly encryptionKey?: string | Buffer | NodeJS.TypedArray | DataView;
/**
You only need to specify this if you don't have a `package.json` file in your project. Default: The name field in the `package.json` closest to where `conf` is imported.
*/
readonly projectName?: string;

/**
* Extension of the config file.
*
* You would usually not need this, but could be useful if you want to interact with a file with a custom file extension that can be associated with your app. These might be simple save/export/preference files that are intended to be shareable or saved outside of the app.
*
* @default 'json'
*/
readonly fileExtension?: string;
/**
__You most likely don't need this. Please don't use it unless you really have to.__
/**
* The config is cleared if reading the config file causes a `SyntaxError`. This is a good default, as the config file is not intended to be hand-edited, so it usually means the config is corrupt and there's nothing the user can do about it anyway. However, if you let the user edit the config file directly, mistakes might happen and it could be more useful to throw an error when the config is invalid instead of clearing. Disabling this option will make it throw a `SyntaxError` on invalid config instead of clearing.
*
* @default true
*/
readonly clearInvalidConfig?: boolean;
The only use-case I can think of is having the config located in the app directory or on some external storage. Default: System default user [config directory](https://github.com/sindresorhus/env-paths#pathsconfig).
*/
readonly cwd?: string;

/**
* Function to serialize the config object to a UTF-8 string when writing the config file.
*
* You would usually not need this, but it could be useful if you want to use a format other than JSON.
*
* @default value => JSON.stringify(value, null, '\t')
*/
readonly serialize?: (value: {[key: string]: T}) => string;
/**
Note that this is __not intended for security purposes__, since the encryption key would be easily found inside a plain-text Node.js app.
/**
* Function to deserialize the config object from a UTF-8 string when reading the config file.
*
* You would usually not need this, but it could be useful if you want to use a format other than JSON.
*
* @default JSON.parse
*/
readonly deserialize?: (text: string) => {[key: string]: T};
Its main use is for obscurity. If a user looks through the config directory and finds the config file, since it's just a JSON file, they may be tempted to modify it. By providing an encryption key, the file will be obfuscated, which should hopefully deter any users from doing so.
/**
* **You most likely don't need this. Please don't use it unless you really have to.**
*
* Suffix appended to `projectName` during config file creation to avoid name conflicts with native apps.
*
* You can pass an empty string to remove the suffix.
*
* For example, on macOS, the config file will be stored in the `~/Library/Preferences/foo-nodejs` directory, where `foo` is the `projectName`.
*
* @default 'nodejs'
*/
readonly projectSuffix?: string;
It also has the added bonus of ensuring the config file's integrity. If the file is changed in any way, the decryption will not work, in which case the store will just reset back to its default state.
When specified, the store will be encrypted using the [`aes-256-cbc`](https://en.wikipedia.org/wiki/Block_cipher_mode_of_operation) encryption algorithm.
*/
readonly encryptionKey?: string | Buffer | NodeJS.TypedArray | DataView;

/**
Extension of the config file.
You would usually not need this, but could be useful if you want to interact with a file with a custom file extension that can be associated with your app. These might be simple save/export/preference files that are intended to be shareable or saved outside of the app.
@default 'json'
*/
readonly fileExtension?: string;

/**
The config is cleared if reading the config file causes a `SyntaxError`. This is a good default, as the config file is not intended to be hand-edited, so it usually means the config is corrupt and there's nothing the user can do about it anyway. However, if you let the user edit the config file directly, mistakes might happen and it could be more useful to throw an error when the config is invalid instead of clearing. Disabling this option will make it throw a `SyntaxError` on invalid config instead of clearing.
@default true
*/
readonly clearInvalidConfig?: boolean;

/**
Function to serialize the config object to a UTF-8 string when writing the config file.
You would usually not need this, but it could be useful if you want to use a format other than JSON.
@default value => JSON.stringify(value, null, '\t')
*/
readonly serialize?: (value: {[key: string]: T}) => string;

/**
Function to deserialize the config object from a UTF-8 string when reading the config file.
You would usually not need this, but it could be useful if you want to use a format other than JSON.
@default JSON.parse
*/
readonly deserialize?: (text: string) => {[key: string]: T};

/**
__You most likely don't need this. Please don't use it unless you really have to.__
Suffix appended to `projectName` during config file creation to avoid name conflicts with native apps.
You can pass an empty string to remove the suffix.
For example, on macOS, the config file will be stored in the `~/Library/Preferences/foo-nodejs` directory, where `foo` is the `projectName`.
@default 'nodejs'
*/
readonly projectSuffix?: string;
}
}

/**
* Simple config handling for your app or module.
*/
export default class Conf<T = unknown> implements Iterable<[string, T]> {
Simple config handling for your app or module.
*/
declare class Conf<T = unknown> implements Iterable<[string, T]> {
store: {[key: string]: T};
readonly path: string;
readonly size: number;

constructor(options?: Options<T>);
/**
@example
```
import Conf = require('conf');
const config = new Conf();
config.set('unicorn', '🦄');
console.log(config.get('unicorn'));
//=> '🦄'
// Use dot-notation to access nested properties
config.set('foo.bar', true);
console.log(config.get('foo'));
//=> {bar: true}
config.delete('unicorn');
console.log(config.get('unicorn'));
//=> undefined
```
*/
constructor(options?: Conf.Options<T>);

/**
* Set an item.
*
* @param key - You can use [dot-notation](https://github.com/sindresorhus/dot-prop) in a key to access nested properties.
* @param value - Must be JSON serializable. Trying to set the type `undefined`, `function`, or `symbol` will result in a `TypeError`.
*/
Set an item.
@param key - You can use [dot-notation](https://github.com/sindresorhus/dot-prop) in a key to access nested properties.
@param value - Must be JSON serializable. Trying to set the type `undefined`, `function`, or `symbol` will result in a `TypeError`.
*/
set(key: string, value: T): void;

/**
* Set multiple items at once.
*
* @param object - A hashmap of items to set at once.
*/
Set multiple items at once.
@param object - A hashmap of items to set at once.
*/
set(object: {[key: string]: T}): void;

/**
* Get an item.
*
* @param key - The key of the item to get.
* @param defaultValue - The default value if the item does not exist.
*/
Get an item.
@param key - The key of the item to get.
@param defaultValue - The default value if the item does not exist.
*/
get(key: string, defaultValue?: T): T;

/**
* Check if an item exists.
*
* @param key - The key of the item to check.
*/
Check if an item exists.
@param key - The key of the item to check.
*/
has(key: string): boolean;

/**
* Delete an item.
*
* @param key - The key of the item to delete.
*/
Delete an item.
@param key - The key of the item to delete.
*/
delete(key: string): void;

/**
* Delete all items.
*/
Delete all items.
*/
clear(): void;

/**
* Watches the given `key`, calling `callback` on any changes.
*
* @param key - The key wo watch.
* @param callback - A callback function that is called on any changes. When a `key` is first set `oldValue` will be `undefined`, and when a key is deleted `newValue` will be `undefined`.
*/
Watches the given `key`, calling `callback` on any changes.
@param key - The key wo watch.
@param callback - A callback function that is called on any changes. When a `key` is first set `oldValue` will be `undefined`, and when a key is deleted `newValue` will be `undefined`.
*/
onDidChange(
key: string,
callback: (oldValue: T | undefined, newValue: T | undefined) => void
): void;

[Symbol.iterator](): IterableIterator<[string, T]>;
}

export = Conf;
1 change: 0 additions & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -207,4 +207,3 @@ class Conf {
}

module.exports = Conf;
module.exports.default = Conf;
4 changes: 2 additions & 2 deletions index.test-d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import {expectType} from 'tsd-check';
import Conf from '.';
import {expectType} from 'tsd';
import Conf = require('.');

const conf = new Conf<string | number | boolean>();
new Conf<string>({
Expand Down
18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"node": ">=8"
},
"scripts": {
"test": "xo && ava && tsd-check"
"test": "xo && ava && tsd"
},
"files": [
"index.js",
Expand All @@ -39,19 +39,19 @@
"cache"
],
"dependencies": {
"dot-prop": "^4.1.0",
"env-paths": "^1.0.0",
"make-dir": "^2.0.0",
"pkg-up": "^2.0.0",
"dot-prop": "^4.2.0",
"env-paths": "^2.1.0",
"make-dir": "^2.1.0",
"pkg-up": "^3.0.1",
"write-file-atomic": "^2.4.2"
},
"devDependencies": {
"@types/node": "^11.10.4",
"ava": "^1.2.0",
"clear-module": "^3.0.0",
"@types/node": "^11.12.2",
"ava": "^1.4.0",
"clear-module": "^3.1.0",
"del": "^4.0.0",
"tempy": "^0.2.1",
"tsd-check": "^0.3.0",
"tsd": "^0.7.1",
"xo": "^0.24.0"
}
}

0 comments on commit 277d70a

Please sign in to comment.