Security News
38% of CISOs Fear They’re Not Moving Fast Enough on AI
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
@universal-packages/adapter-resolver
Advanced tools
Module loader based on adapter parameters.
npm install @universal-packages/adapter-resolver
resolveAdapter(name: string, [options])
Tries to infer an installed module name based on name and options, imports it and infers the desired export based on name and options.
import { resolveAdapter } from '@universal-packages/adapter-resolver'
const adapter = resolveAdapter('redis', { domain: 'token-registry', type: 'engine' })
console.log(adapter)
// > [class RedisEngine]
Options are meant for inferring the matching adapter so the parent library can have a single simple adapter name requirement instead of the whole path of library and export.
domain
String
To help infer the module name for example if the adapter is redis
and is meant to work with @universal-packages/token-registry
you can just provide here token-registry
.internal
Object
An object which keys match an internal adapter provided by the root library.
import { resolveAdapter } from '@universal-packages/adapter-resolver'
const adapter = resolveAdapter('local', { internal: { local: LocalAdapter } })
console.log(adapter)
// > [class LocalAdapter]
type
String
To help infer the export name, for example if the adapter is an "engine", you can provide here engine
and it will internally will come up with different case variations to try to find the export ex: redisEngine, RedisEngine, redis_engine.This library is developed in TypeScript and shipped fully typed.
The development of this library happens in the open on GitHub, and we are grateful to the community for contributing bugfixes and improvements. Read below to learn how you can take part in improving this library.
FAQs
Module loader based on adapter parameters.
We found that @universal-packages/adapter-resolver demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.
Security News
Company News
Socket is joining TC54 to help develop standards for software supply chain security, contributing to the evolution of SBOMs, CycloneDX, and Package URL specifications.