
Security News
The Changelog Podcast: Practical Steps to Stay Safe on npm
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.
ng-resource-factory
Advanced tools
A factory build upon ngResource helping you to interact with RESTful APIs with advanced features as caches and data stores.
Angular ResourceFactory is an AngularJS library that extends the capabilities of ngResource in various ways. The main features include a resource store for holding changes on resource instances and related resource instances to commit them at once, and an advanced resource caching.
Note: This library is for AngularJS 1.x only!
Angular ResourceFactory depends on AngularJS 1.x.
In the following example we assume a RESTful endpoint that gives us the total of results via the count attribute
and the actual data in the results attribute in the list call. Each object has an ID on the pk attribute, holds
its own URL on the url attribute and also has some dates as creation_date and last_modification_date that we
want to handle as Moment.js objects.
To make things a bit clearer, this is the list call result of the RESTful API endpoint:
{
"count": 2,
"results": [
{
"pk": 1,
"url": "http://example.api/member/1/",
"creation_date": "2017-01-11T06:00:00Z",
"last_modification_date": "2017-01-12T08:00:00Z",
"name": "Example Member 1"
},
{
"pk": 2,
"url": "http://example.api/member/2/",
"creation_date": "2017-01-11T06:00:00Z",
"last_modification_date": "2017-01-12T08:00:00Z",
"name": "Example Member 2"
}
]
}
Whereas this is the result of a detail call:
{
"pk": 2,
"url": "http://example.api/member/2/",
"creation_date": "2017-01-11T06:00:00Z",
"last_modification_date": "2017-01-12T08:00:00Z",
"name": "Example Member 2"
}
Our service definition may look like this:
var module = angular.module('services');
module.factory('MemberResourceService',
function (ResourceFactoryService) {
return ResourceFactoryService('MemberResourceService', 'http://example.api/member/:pk/', {
queryDataAttr: 'results',
queryTotalAttr: 'count',
pkAttr: 'pk',
urlAttr: 'url',
/**
* Converts the dates to moment objects.
* @param obj
* @return {*}
*/
toInternal: function (obj) {
// no transformation needed if given object is false
if (!obj) {
return obj;
}
obj.creation_date = obj.creation_date ? moment(obj.creation_date) : null;
obj.last_modification_date = obj.last_modification_date ? moment(obj.last_modification_date) : null;
return obj;
},
/**
* Converts the moment dates to strings.
* @param obj
* @return {*}
*/
fromInternal: function (obj) {
// no transformation needed if given object is false
if (!obj) {
return obj;
}
obj.creation_date = obj.creation_date ? moment(obj.creation_date).toJSON() : null;
obj.last_modification_date = obj.last_modification_date ? moment(obj.last_modification_date).toJSON() : null;
return obj;
}
});
}
);
Angular ResourceFactory Copyright 2016 Andreas Stocker MIT License
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
FAQs
A factory build upon ngResource helping you to interact with RESTful APIs with advanced features as caches and data stores.
We found that ng-resource-factory demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

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.

Security News
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.

Security News
Experts push back on new claims about AI-driven ransomware, warning that hype and sponsored research are distorting how the threat is understood.

Security News
Ruby's creator Matz assumes control of RubyGems and Bundler repositories while former maintainers agree to step back and transfer all rights to end the dispute.