
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
deserialize-json-api-consistent
Advanced tools
Immutable json:api deserializer with consistent relationship wrapper
Maintained fork of weilandia/deserialize-json-api with a consistent relationship wrapper and ongoing support.
Immutable json:api deserializer
npm install deserialize-json-api-consistent
# or
yarn add deserialize-json-api-consistent
This fork maintains full compatibility with the original weillandia/deserialize-json-api package while adding enhanced relationship meta handling.
id, type, attributes, links, meta)When a relationship has only meta (no data), the meta is attached directly to the relationship object (or under a custom key via relationshipMetaKey).
{
"data": {
"id": "332",
"type": "authors",
"denominazione": "SWEET TIME"
}
}
// Result excerpt
// "comments": { "meta": { "count": 3 } }
When a relationship has no data, no meta, and no links, it is not created at all (maintaining original package behavior).
import { deserialize } from "deserialize-json-api-consistent";
const body = {
data: {
id: 1,
type: "movie",
attributes: {
name: "test movie",
year: 2014,
},
relationships: {
actors: {
data: [
{ id: 1, type: "person" },
{ id: 2, type: "person" },
],
},
awards: {
data: [
{
id: 4,
type: "award",
links: {
self: "/awards/1",
related: "/awards/1/movie",
},
meta: {
verified: false,
},
},
],
},
locations: {
data: [{ id: 1, type: "location" }],
},
director: {
data: { id: 3, type: "person" },
},
},
links: {
self: "/movies/1",
},
meta: {
saved: false,
},
},
included: [
{
type: "person",
id: 1,
attributes: { name: "John", age: 80 },
},
{
type: "person",
id: 2,
attributes: { name: "Jenn", age: 40 },
},
{
type: "award",
id: 4,
attributes: { type: "Oscar", category: "Best director" },
},
{
type: "location",
id: 1,
attributes: { name: "LA" },
},
{
type: "person",
id: 3,
attributes: { name: "Steven" },
},
],
meta: {
copyright: "Copyright 2015 Example Corp.",
},
errors: [{ title: "Error!" }],
};
const deserializedData = deserialize(body);
deserializedData == {
data: {
id: 1,
type: "movie",
links: { self: "/movies/1" },
meta: { saved: false },
name: "test movie",
year: 2014,
locations: [{ id: 1, name: "LA", type: "location" }],
director: { id: 3, type: "person", name: "Steven" },
actors: [
{ id: 1, type: "person", name: "John", age: 80 },
{ id: 2, type: "person", name: "Jenn", age: 40 },
],
awards: [
{
id: 4,
type: "award",
links: { self: "/awards/1", related: "/awards/1/movie" },
meta: { verified: false },
category: "Best director",
},
],
},
meta: { copyright: "Copyright 2015 Example Corp." },
errors: [{ title: "Error!" }],
};
### Relationship examples
- to-many with data:
```json
"actors": [
{ "id": 1, "type": "person", "name": "John", "age": 80 },
{ "id": 2, "type": "person", "name": "Jenn", "age": 40 }
]
"director": { "id": 3, "type": "person", "name": "Steven" }
"actors": { "meta": { "count": 3 } }
// Relationship is not created at all
// No "actors" property in the result
## Options
#### camelCase
If you would like to have your object key `camelCased` you can pass an option:
```javascript
const result = deserialize(body, { transformKeys: "camelCase" });
Currently the package will look for - and _ characters and transform it into camelCase.
first-name -> firstName
first_name -> firstName
Customize the property name used to attach relationship-only meta (when there is no data). Default is meta.
const result = deserialize(body, { relationshipMetaKey: "_meta" });
// Example output
// comments: { _meta: { count: 3 } }
git checkout -b feature/fooBar)git commit -am 'Add some fooBar')git push origin feature/fooBar)FAQs
Immutable json:api deserializer with consistent relationship wrapper
We found that deserialize-json-api-consistent demonstrated a healthy version release cadence and project activity because the last version was released less than 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.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.