npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

deserialize-json-api-consistent

v3.0.8

Published

Immutable json:api deserializer with consistent relationship wrapper

Readme

🥣 deserialize-json-api-consistent

Maintained fork of weilandia/deserialize-json-api with a consistent relationship wrapper and ongoing support.

Immutable json:api deserializer

  • {json:api} spec compliant
  • maps included objects to resources
  • does not mutate original response object

Install

npm install deserialize-json-api-consistent
# or
yarn add deserialize-json-api-consistent

Compatibility

This fork maintains full compatibility with the original weillandia/deserialize-json-api package while adding enhanced relationship meta handling.

  • Relationships maintain their original structure (flat objects, not wrapped)
  • Resource-level fields remain "flat" (id, type, attributes, links, meta)
  • Relationships without data, meta, or links are not created (original behavior)
  • Enhanced meta handling for relationships with only meta (no data)

Relationship meta handling

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).

Usage

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 }
]
  • to-one with data:
"director": { "id": 3, "type": "person", "name": "Steven" }
  • to-many with only meta (no data, no links):
"actors": { "meta": { "count": 3 } }
  • to-many with no data, links, or meta:
// 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

relationshipMetaKey

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 } }

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b feature/fooBar)
  3. Commit your changes (git commit -am 'Add some fooBar')
  4. Push to the branch (git push origin feature/fooBar)
  5. Create a new Pull Request