Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

kitsu-core

Package Overview
Dependencies
Maintainers
1
Versions
122
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

kitsu-core

Core serialisation and deserialsation functions for the kitsu JSON:API client

  • 6.0.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
7.8K
decreased by-24.14%
Maintainers
1
Weekly downloads
 
Created
Source

Kitsu Core

npm badge bundlephobia badge npm install badge david badge contributors badge donate badge

travis badge appveyor badge david dev badge cc maintainability badge cc coverage badge

Core JSON:API serialisation and deserialisation components for kitsu

Features

  • JSON-API 1.0 compliant
  • Automatically links relationships to data
  • Works in Node and on the web
  • Uses the Promise API

Node / Browser Support

PackagePackage
Size*
NodeChromeFirefoxSafariEdgeIE
kitsu-core4.3 kb6+54+51+10+15+
kitsu-core/legacy4.4 kb6+4+3.5+3.2+12+8+
kitsu-core/node1.5 kb6+

* Including all dependencies, minified & gzipped

Install

Yarn / NPM

yarn add kitsu-core
npm install kitsu-core
import { camel } from 'kitsu-core'             // ES Modules and Babel
const { camel } = require('kitsu-core')        // CommonJS and Browserify
const { camel } = require('kitsu-core/legacy') // Legacy IE8+ support
const { camel } = require('kitsu-core/node')   // Lighter node-only package

camel(...)

Try it on RunKit

Packd CDN

<script src='https://bundle.run/kitsu-core@5?name=kitsuCore'></script>
<script src='https://bundle.run/kitsu@5/legacy/index.js?name=kitsuCore'></script>
kitsuCore.camel(...)

Try it on CodePen

API

Table of Contents

camel

Converts kebab-case and snake_case into camelCase

Parameters
Examples

Convert kebab-case

camel('hello-world') // 'helloWorld'

Convert snake_case

camel('hello_world') // 'helloWorld'

Returns string camelCase formatted string

deattribute

Hoists attributes to be top-level

Parameters
Examples

Deattribute an array of resources

// JSON:API 'data' field
const data = [
  {
    id: '1',
    type: 'users',
    attributes: { slug: 'wopian' }
  }
]

const output = await deattribute(data) // [ { id: '1', type: 'users', slug: 'wopian' } ]

Deattribute a resource

// JSON:API 'data' field
const data = {
  id: '1',
  type: 'users',
  attributes: { slug: 'wopian' }
}

const output = await deattribute(data) // { id: '1', type: 'users', slug: 'wopian' }

Returns (Object | Array) Deattributed resource data

deserialise

Deserialises a JSON-API response

Parameters
Examples

Deserialise with a basic data object

await deserialise({
  data: {
    id: '1',
    attributes: { liked: true }
  },
  meta: { hello: 'world' }
}) // { data: { id: '1', liked: true }, meta: { hello: 'world' } }

Deserialise with relationships

await deserialise({
  data: {
    id: '1',
    relationships: {
      user: {
        data: {
          type: 'users',
          id: '2' }
      }
    }
  },
  included: [
    {
      type: 'users',
      id: '2',
      attributes: { slug: 'wopian' }
    }
  ]
}) // { data: { id: '1', user: { type: 'users', id: '2', slug: 'wopian' } } }

Returns Object The deserialised response

error

Mutates an error and rethrows it

Parameters

filterIncludes

Filters includes for the specific relationship

Parameters
  • included Object The response included object
  • opts Object
    • opts.id string The relationship ID
    • opts.type string The relationship type

Returns Array The matched includes

kebab

Converts camelCase into kebab-case

Parameters
Examples
kebab('helloWorld') // 'hello-world'

Returns string kekab-case formatted string

linkRelationships

Links relationships to included data

Parameters
  • data Object The response data object
  • included Object The response included object

query

Constructs a URL query string for JSON:API parameters

Parameters
  • params Object Parameters to parse
  • prefix string Prefix for nested parameters - used internally (default null) (optional, default null)

Returns string URL query string

serialise

Serialises an object into a JSON-API structure

Parameters
  • model string Request model
  • obj Object The data (optional, default {})
  • method string Request type (optional, default 'POST')
Examples

Due to its usage in kitsu, it MUST be called with this set in 5.0.x

import { serialise, camel, kebab } from 'kitsu-core'
import plural from 'pluralize'

const output = await serialise.apply({ camel, resCase: kebab, plural }, [ model, obj, 'PATCH' ])

Returns Object The serialised data

snake

Converts camelCase into snake_case

Parameters
Examples
snake('helloWorld') // 'hello_world'

Returns string snake_case formatted string

Contributing

See CONTRIBUTING

Releases

See CHANGELOG

License

All code released under MIT

Keywords

FAQs

Package last updated on 10 Aug 2018

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc