1.0.1 • Published 5 years ago

generic-resources v1.0.1

Weekly downloads
1
License
ISC
Repository
-
Last release
5 years ago

generic-resources

Abstract classes to manage resources from REST APIs in Angular

Usage

In your project use

npm install generic-resources --save

and then implement your resource models, services and resolvers as the following:

Implement resource models

import { Resource } from 'generic-resources';

export class User extends Resource {
  name: string;
}

Implement resource services

1.0.1

5 years ago

1.0.0

5 years ago