Socket
Socket
Sign inDemoInstall

ember-data-store-push-improvements

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ember-data-store-push-improvements

POC for https://github.com/emberjs/rfcs/pull/161


Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Weekly downloads
 
Created
Source

ember-data-store-push-improvements

Build Status Ember Observer Score

This is a POC addon for RFC#161, which goal is to improve the store.push situation within Ember Data.

  • add store.normalizePayload
  • add store.pushRef

Installation

ember install ember-data-store-push-improvements

Code samples

let normalized = store.normalizePayload({
  person: {
    id: 1,
    name: "GOB"
  }
});

assert.deepEqual(normalized, {
  data: {
    type: "person",
    id: "1",
    attributes: {
      name: "GOB"
    }
  }
});

Development

Installation

  • git clone this repository
  • npm install
  • bower install

Running

Running Tests

  • npm test (Runs ember try:testall to test your addon against multiple Ember versions)
  • ember test
  • ember test --server

Building

  • ember build

For more information on using ember-cli, visit http://ember-cli.com/.

Keywords

FAQs

Package last updated on 07 Aug 2016

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