Coder Social home page Coder Social logo

deserialize-json-api's Introduction

🥣 deserialize-json-api

⚠️⚠️⚠️ We no longer use this lib at Govly and it is not actively maintained. New maintainers welcome. ⚠️⚠️⚠️

Immutable json:api deserializer

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

Install

yarn add deserialize-json-api

Usage

import { deserialize } from "deserialize-json-api";

const body = {
  data: {
    id: 1,
    type: "movie",
    attributes: { name: "test movie", year: 2014 },
    relationships: {
      actors: { data: [{ id: 1, type: "actor" }] },
      awards: {
        data: [
          {
            id: 4,
            type: "award",
            links: { self: "/awards/1" },
            meta: { verified: false },
          },
        ],
      },
    },
    links: { self: "/movies/1" },
    meta: { saved: false },
  },
  included: [
    {
      type: "actor",
      id: 1,
      attributes: { name: "John", age: 80 },
    },
    {
      type: "award",
      id: 4,
      attributes: { type: "Oscar", category: "Best director" },
    },
  ],
  meta: { copyright: "Copyright 2015 Example Corp." },
  errors: [{ title: "Error!" }],
};

const deserializedData = deserialize(body);

body === body; // true

JSON.stringify(deserializedData) ===
  JSON.stringify({
    data: {
      id: 1,
      type: "movie",
      links: { self: "/movies/1" },
      meta: { saved: false },
      name: "test movie",
      year: 2014,
      actors: [
        {
          id: 1,
          type: "actor",
          name: "John",
          age: 80,
        },
      ],
      awards: [
        {
          id: 4,
          type: "Oscar",
          links: { self: "/awards/1" },
          meta: { verified: false },
          category: "Best director",
        },
      ],
    },
    meta: { copyright: "Copyright 2015 Example Corp." },
    errors: [{ title: "Error!" }],
  });

Options

camelCase

If you would like to have your object key camelCased you can pass an option:

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

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

deserialize-json-api's People

Contributors

weilandia avatar charliebrowncharacter avatar jusleg avatar to-samueledirito avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.