1.0.0 • Published 6 years ago

ngimport-ngresource v1.0.0

Weekly downloads
25
License
MIT
Repository
github
Last release
6 years ago

ngimport-ngresource Build Status npm mit

ngResource support for ngimport

Install

# Using Yarn:
yarn add ngimport-ngresource angular angular-resource

# Or, using NPM:
npm install ngimport-ngresource angular angular-resource --save

Example

import { $resource } from 'ngimport-ngresource'

let User = $resource('/user/:userId', { userId: '@id' })
let user = User.get({ userId: 123 }, () => {
  user.abc = true
  user.$save()
})

License

MIT

Running the tests

npm test