
Product
Introducing Reports: An Extensible Reporting Framework for Socket Data
Explore exportable charts for vulnerabilities, dependencies, and usage with Reports, Socket’s new extensible reporting framework.
bidirectional-adapter
Advanced tools
bi-directional adapter factory, used to decouple systems across shared data structures
Factory to create bi-directional adapters that can convert between two distinct data structures. Using adapters helps to decouple systems which share common data structures and may need to alter them independently without introducing conflicts in each other.
You have multiple services which each operate on a single shared resource but want to represent the data differently in each service or want to isolate each service from data structure changes required by the other.
With bidirectional-adapter you can define a simple entity which can be used to transform data between two formats.
const adapter = createAdapter<string, number>(
(stringValue) => parseInt(stringValue, 10),
(numericValue) => String(numericValue)
);
import axios from 'axios';
import createAdapter from 'bidirectional-adapter';
const accountAdapter = createAdapter(
(dbAccount) => ({
id: dbAccount.user_id,
name: `${dbAccount.user.firstName} ${dbAccount.user.lastName}`,
email: dbAccount.user.email,
}),
(appAccount) => ({
user_id: appAcount.id,
user: {
firstName: appAccount.name.split(' ')[0],
lastName: appAccount.name.split(' ')[1],
},
email: appAccount.email,
})
);
const fetchAccount = (userID) => {
// state is in the shape of propertyTwo
// do reducer stuff here
return axios.get(`/account/${userID}`).then((res) => accountAdapter.fromDB(res.data));
};
const updateAccount = (account) => {
// state is in the shape of propertyTwo
// do reducer stuff here
return axios.post(`/account/${userID}`, accountAdapter.toDB(account));
};
import { createSmartMultiAdapter } from 'bidirectional-adapter';
interface DBModel {
x: number;
a: number;
b: string;
c1: boolean;
}
interface Model {
x: number;
ab: string;
c2: boolean;
}
type KeyMap = [['a' | 'b', 'ab'], ['c1', 'c2']];
const adapter = createSmartMultiAdapter<DBModel, Model, [], [], KeyMap>(
() => ({} as any),
() => ({} as any)
);
adapter.fromDB({ a: 1, b: 'a', c1: false, x: 1 }); // Model
adapter.fromDB({ a: 1, b: 'a', c1: false }); // Pick<Model, 'ab' | 'c2'>
adapter.fromDB({ b: 'a', c1: false }); // Pick<Model, 'c2'>
adapter.fromDB({ x: 1 }); // Pick<Model, 'x1'>
adapter.fromDB({}); // EmptyObject
adapter.mapFromDB([{ a: 1, b: 'a', c1: false, x: 1 }]); // Model[]
adapter.mapFromDB([{ a: 1, b: 'a', c1: false }]); // Pick<Model, 'ab' | 'c2'>[]
adapter.mapFromDB([{ b: 'a', c1: false }]); // Pick<Model, 'c2'>[]
adapter.mapFromDB([{ x: 1 }]); // Pick<Model, 'x1'>[]
adapter.mapFromDB([{}]); // EmptyObject[]
adapter.toDB({ ab: '1', c2: false, x: 1 }); // DBModel
adapter.toDB({ ab: '1', x: 1 }); // Pick<DBModel, 'a' | 'b' | 'x'>
adapter.toDB({ c2: false }); // Pick<Model, 'c2'>
adapter.toDB({ x: 1 }); // Pick<Model, 'x1'>
adapter.toDB({}); // EmptyObject
adapter.mapToDB([{ ab: '1', c2: false, x: 1 }]); // DBModel
adapter.mapToDB([{ ab: '1', x: 1 }]); // Pick<DBModel, 'a' | 'b' | 'x'>
adapter.mapToDB([{ c2: false }]); // Pick<Model, 'c2'>
adapter.mapToDB([{ x: 1 }]); // Pick<Model, 'x1'>
adapter.mapToDB([{}]); // EmptyObject
To use bidirectional-adapter, install it as a dependency:
# If you use npm:
npm install bidirectional-adapter
# Or if you use Yarn:
yarn add bidirectional-adapter
This assumes that you’re using a package manager such as npm.
FAQs
bi-directional adapter factory, used to decouple systems across shared data structures
The npm package bidirectional-adapter receives a total of 0 weekly downloads. As such, bidirectional-adapter popularity was classified as not popular.
We found that bidirectional-adapter demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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.

Product
Explore exportable charts for vulnerabilities, dependencies, and usage with Reports, Socket’s new extensible reporting framework.

Product
Socket for Jira lets teams turn alerts into Jira tickets with manual creation, automated ticketing rules, and two-way sync.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.