Ghost/ghost/adapter-manager
Daniel Lockyer 0a5f600dfe
Tidied up package README and LICENSE files
- we shouldn't need individual LICENSE files because these packages
  won't be published, so the top-level one applies
- also cleaned up README files to remove mentions of Lerna monorepos and
  install instructions
2022-07-26 15:22:10 +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 Added @tryghost/adapter-manager module (#38) 2020-04-05 15:54:47 +02:00
package.json Cleaned up package metadata 2022-07-26 15:08:05 +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();