All Projects → olosegres → Jsona

olosegres / Jsona

Licence: mit
Data formatter that creates simplified objects from JSON or stored reduxObject, creates JSON from the same simplified objects (in according with JSON API specification)

Programming Languages

typescript
32286 projects

Projects that are alternatives of or similar to Jsona

Loopback Component Jsonapi
JSONAPI support for loopback.
Stars: ✭ 104 (-27.78%)
Mutual labels:  json-api, jsonapi, serialization
laravel5-jsonapi-dingo
Laravel5 JSONAPI and Dingo together to build APIs fast
Stars: ✭ 29 (-79.86%)
Mutual labels:  serialization, json-api, jsonapi
jsonapi-serializable
Conveniently build and efficiently render JSON API resources.
Stars: ✭ 43 (-70.14%)
Mutual labels:  serialization, json-api, jsonapi
Jsonapi Rb
Efficiently produce and consume JSON API documents.
Stars: ✭ 219 (+52.08%)
Mutual labels:  json-api, jsonapi, serialization
Jsonapi Rails
Rails gem for fast jsonapi-compliant APIs.
Stars: ✭ 242 (+68.06%)
Mutual labels:  json-api, jsonapi, serialization
php-serializer
Serialize PHP variables, including objects, in any format. Support to unserialize it too.
Stars: ✭ 47 (-67.36%)
Mutual labels:  serialization, json-api, jsonapi
Symfony Jsonapi
JSON API Transformer Bundle for Symfony 2 and Symfony 3
Stars: ✭ 114 (-20.83%)
Mutual labels:  json-api, jsonapi, serialization
Vox
Swift JSON:API client framework
Stars: ✭ 47 (-67.36%)
Mutual labels:  json-api, jsonapi
Marshmallow dataclass
Automatic generation of marshmallow schemas from dataclasses.
Stars: ✭ 255 (+77.08%)
Mutual labels:  orm, serialization
Laravel5 Jsonapi
Laravel 5 JSON API Transformer Package
Stars: ✭ 313 (+117.36%)
Mutual labels:  json-api, jsonapi
Json Api Dart
JSON:API client for Dart/Flutter
Stars: ✭ 53 (-63.19%)
Mutual labels:  json-api, jsonapi
jsonapi-deserializable
Conveniently deserialize JSON API payloads into custom hashes.
Stars: ✭ 23 (-84.03%)
Mutual labels:  json-api, jsonapi
laravel5-hal-json
Laravel 5 HAL+JSON API Transformer Package
Stars: ✭ 15 (-89.58%)
Mutual labels:  serialization, jsonapi
Redux Json Api
Redux actions, action creators and reducers to make life with JSON APIs a breeze.
Stars: ✭ 374 (+159.72%)
Mutual labels:  json-api, jsonapi
Jsonapi Client
JSON API (jsonapi.org) client for Python
Stars: ✭ 63 (-56.25%)
Mutual labels:  json-api, jsonapi
Reservoir
A back end for your front end: a content repository. Powered by Drupal 8, JSON API and OAuth2.
Stars: ✭ 262 (+81.94%)
Mutual labels:  json-api, jsonapi
json-api-serializer
Node.js/browser framework agnostic JSON API (http://jsonapi.org/) serializer.
Stars: ✭ 141 (-2.08%)
Mutual labels:  json-api, jsonapi
Jsonapi parameters
Rails-way to consume JSON:API input
Stars: ✭ 50 (-65.28%)
Mutual labels:  json-api, jsonapi
Sarala
Javascript library to communicate with RESTful API built following JSON API specification. inspired by Laravel’s Eloquent
Stars: ✭ 101 (-29.86%)
Mutual labels:  json-api, orm
Datafiles
A file-based ORM for Python dataclasses.
Stars: ✭ 113 (-21.53%)
Mutual labels:  orm, serialization

Jsona

Framework agnostic, customizable library that provide data formatters to simplify work with JSON API v1.0 specification.

NPM Build Status dependencies downloads

What problem does it solve?

When you work with API standardized to json:api specification, you're dealing with a special and optimized JSON data format in the request and response body. You can get data of several entities that are related to each other, but you'll receive it in array (included). You may need to send modified back to server (or new data) in accordance with specification.

This may puzzle you with the following questions:

  • How to get necessary entity from included array many times more inconvenient and optimal?
  • How to describe data from server, working with typings (TypeScript, Flow)?
  • How to send JSON to the server without manually assembling JSON in accordance with specification?

Jsona solves this problems by providing:

  • converter from JSON to simplified objects (some denormalized structure, wich is easy to typify)
  • converter from simplified objects to JSON (in according with json:api specification)
  • converter from "reduxObject" to simplified objects (reduxObject is a result object of json-api-normalizer)

NOTE: This README describes latest stable version. You can read README for old versions 0.2.x here

Installation

npm install jsona

or

yarn add jsona

How to use

You need to instantiate Jsona once, then use its public methods to convert data.

import Jsona from 'jsona';
const dataFormatter = new Jsona();

deserialize - creates simplified object(s) from json

const json = {
    data: {
          type: 'town',
          id: '123',
          attributes: {
              name: 'Barcelona'
          },
          relationships: {
              country: {
                  data: {
                      type: 'country',
                      id: '32'
                  }
              }
          }
    },
    included: [{
        type: 'country',
        id: '32',
        attributes: {
            name: 'Spain'
        }
    }]
};

const town = dataFormatter.deserialize(json);
console.log(town); // will output:
/* {
    type: 'town',
    id: '123',
    name: 'Barcelona',
    country: {
        type: 'country',
        id: '32',
        name: 'Spain'
    },
    relationshipNames: ['country']
} */

serialize - creates json from simplified object(s)

const user = {
    type: 'user',
    id: 1,
    categories: [{ type: 'category', id: '1', name: 'First category' }],
    town: {
        type: 'town',
        id: '123',
        name: 'Barcelona',
        country: {
            type: 'country',
            id: '32',
            name: 'Spain'
        },
        relationshipNames: ['country']
    },
    relationshipNames: ['categories', 'town']
};

const newJson = dataFormatter.serialize({
    stuff: user, // can handle array
    includeNames: ['categories', 'town.country'] // can include deep relations via dot
});

console.log(newJson); // will output:
/* {
    data: {
        type: 'user',
        id: 1,
        relationships: {
            categories: {
                data: [{ type: 'category', id: '1' }]
            },
            town: {
                data: { type: 'town', id: '123' }
            }
        }
    },
    included: [{
        type: 'category',
        id: '1',
        attributes: {
            name: 'First category',
        }
    }, {
        type: 'town',
        id: '123',
        attributes: {
             name: 'Barcelona',
        },
        relationships: {
             country: {
                 data: {
                     type: 'country',
                     id: '32',
                 }
             }
        }
    }, {
        type: 'country',
        id: '32',
        attributes: {
            name: 'Spain',
        }
    }]
}*/

denormalizeReduxObject - creates simplified object(s) from reduxObject

"reduxObject" - result object of json-api-normalizer

const reduxObject = reduxStore.entities; // depends on where you store it
const town = dataFormatter.denormalizeReduxObject({reduxObject, entityType: 'town', entityIds: '123'});
console.log(town); // if there is such town and country in reduxObject, it will output:
/* {
    type: 'town',
    id: '123',
    name: 'Barcelona',
    country: {
        type: 'country',
        id: '34',
        name: 'Spain'
    },
    relationshipNames: ['country']
} */

Customize

Build process and property names

You can control process of building simplified objects, just use your own propertyMappers when Jsona instantiates.

With IJsonPropertiesMapper you can implement your way of creation simplified objects (data models) from JSON, with IModelPropertiesMapper implement how to give back values from data model to JSON.

It gives unlimited possibilities to integrate Jsona with react, redux, angular2

Example of passing your own propertyMappers to Jsona:

import Jsona from 'jsona';
import {MyModelPropertiesMapper, MyJsonPropertiesMapper} from 'myPropertyMappers';

export default const dataFormatter = new Jsona({
    modelPropertiesMapper: MyModelPropertiesMapper,
    jsonPropertiesMapper: MyJsonPropertiesMapper
});

Also, there is built-in switchCasePropertyMappers, that you can use if need to automatically transform property names from kebab, snake, camel case and back.

Cache

For faster creation of simplified objects from json, it uses a cache for already processed json-entity, see DeserializeCache that uses by default. It possible to provide your own IDeserializeCache manager:

import Jsona from 'jsona';
import {MyOwnDeserializeCache} from './index';

export default const dataFormatter = new Jsona({
    DeserializeCache: MyOwnDeserializeCache
});

License

Jsona, examples provided in this repository and in the documentation are MIT licensed.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].