ngimport-ngresource
v1.0.0
Published
ngResource support for ngimport
Downloads
12
Maintainers
Readme
ngimport-ngresource
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