Ghost/ghost/adapter-manager
Daniel Lockyer 08abfcafd1
Remove linting as posttest step
- linting is handled separately (in CI and locally, as it's a git
  pre-push hook) so we shouldn't also be running it after tests
2022-07-26 15:26:21 +02:00
..
lib Improved error messages for loading adapters 2020-04-07 16:33:39 +02:00
test Remove trailing commas from .eslintrc.js files 2020-08-04 14:48:07 +01:00
types Updated type definition files 2020-05-18 15:21:44 +02:00
.eslintrc.js Remove trailing commas from .eslintrc.js files 2020-08-04 14:48:07 +01:00
index.js
package.json Remove linting as posttest step 2022-07-26 15:26:21 +02:00
README.md Tidied up package README and LICENSE files 2022-07-26 15:22:10 +02:00
tsconfig.json Stopped type declaration files from being generated 2021-07-14 11:51:14 +01:00

Adapter Manager

A manager for retrieving custom "adapters" - can be used to abstract away from custom implementations

Usage

const AdapterManager = require('@tryghost/adapter-manager');

const adapterManager = new AdapterManager({
    pathsToAdapters: [
        '/path/to/custom/adapters',
        '/path/to/default/adapters'
    ]
});

class MailAdapterBase {
    someMethod() {}
}

adapterManager.register('mail', MailAdapterBase);

const mailAdapterInstance = adapterManager.getAdapter('mail', 'direct', mailConfig);

mailAdapterInstance.someMethod();