0.1.2 • Published 10 months ago

deserialise-jsonapi v0.1.2

Weekly downloads
7
License
MIT
Repository
github
Last release
10 months ago

deserialise-jsonapi

Javascript library to deserialise JSONAPI responses to plain javascript objects. Designed to work with the output of Flask-REST-JSONAPI.

Main Features

  • Resolves Nested Includes
  • Asynchronous - Returns a Promise
  • ES6 codebase

Installation

Using npm:

$ npm install --save deserialise-jsonapi

Usage

import Deserialiser from 'deserialise-jsonapi'

const des = new Deserialiser()

let response = fetch('http://your-jsonapi.com/url')
    .then(response => response.json())
    .then(data => des.deserialise(data))
    .then(models => {
        // Use your deserialised models
        console.log(models)
    })

Status

This package should be considered early beta. Though it is used on multiple production websites, the api could still change without warning.

version 0.1.2

0.1.2

10 months ago

0.1.1

11 months ago

0.1.0

11 months ago

0.0.6

7 years ago