npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

ember-django-adapter

v2.1.1

Published

Use Django REST Framework with your Ember project

Downloads

9,771

Readme

Ember Django Adapter

Circle CI

Ember Observer Score

Ember Data is a core Ember.js library that provides a store and ORM for working with your Ember models. Ember Data works with JSON API out of the box, however "Ember Data is designed to be agnostic to the underlying persistence mechanism". To that end, Ember Data encourages the use of adapters to manage communication with various backend APIs.

This adapter enables the use of Django REST Framework as an API backend for Ember Data. The addon is compatible with ember-cli version 0.2.7 and higher, Ember 1.12.1 and higher (including 2.0.0), and Ember Data v1.13.7 and higher (including 2.0.0).

Community

Development Hints

Working with master

Install EDA pegged to master:

npm i --save-dev ember-django-adapter@dustinfarris/ember-django-adapter

Working with your fork

Clone and install EDA:

git clone [email protected]:yourname/ember-django-adapter
cd ember-django-adapter
npm i && bower i
npm link

Install test dependencies in your project, and link your local copy of EDA:

cd myproject
bower i pretender
bower i sinonjs
npm link ember-django-adapter

Goals

  • Support applications built with Django REST Framework and Ember.js by offering easy-to-use addons, and providing documentation and guidance.
  • Ensure as much as possible that the Ember.js and Django REST Framework documentation is up-to-date and accurate as it pertains to their combined usage.
  • Promote the adoption of Ember.js and Django REST Framework and actively take part in their respective communities.