All Projects → prest → Angular Prest

prest / Angular Prest

Licence: mit
pREST component for Angular

Programming Languages

typescript
32286 projects

Projects that are alternatives of or similar to Angular Prest

Angular4-seed
Angular 4 Seed for Angular Forms
Stars: ✭ 37 (+131.25%)
Mutual labels:  angularjs, angular2, angular4, angular-components, angular5
Angular2
Angular 2 Seed
Stars: ✭ 75 (+368.75%)
Mutual labels:  angularjs, angular2, angular4, angular5
Angular-Firebase-Sortable-Table
Angular Firebase Sortable Table is a module that makes tables creation with firebase an easy task.
Stars: ✭ 28 (+75%)
Mutual labels:  angularjs, angular2, angular4, angular-components
angular2-cookie-law
Angular2+ component that provides a banner to inform users about cookie law
Stars: ✭ 38 (+137.5%)
Mutual labels:  angularjs, angular2, angular4, angular-components
Ng Drag Drop
Drag & Drop for Angular - based on HTML5 with no external dependencies. 🎉
Stars: ✭ 233 (+1356.25%)
Mutual labels:  angular-components, angular2, angular4, angular5
Angular5 Seed
Angular5 Seed for Application
Stars: ✭ 222 (+1287.5%)
Mutual labels:  angularjs, angular2, angular4, angular5
Fusebox Angular Universal Starter
Angular Universal seed project featuring Server-Side Rendering, @fuse-box bundling, material, firebase, Jest, Nightmare, and more
Stars: ✭ 132 (+725%)
Mutual labels:  angularjs, angular2, angular4, angular5
Nebular
💥 Customizable Angular UI Library based on Eva Design System 🌚✨Dark Mode
Stars: ✭ 7,368 (+45950%)
Mutual labels:  angular-components, angular2, angular4, angular5
Ng Simple Slideshow
A simple, responsive slideshow for Angular 4+.
Stars: ✭ 119 (+643.75%)
Mutual labels:  angular-components, angular2, angular4, angular5
Ngx Quill Editor
🍡@quilljs editor component for @angular
Stars: ✭ 234 (+1362.5%)
Mutual labels:  angular-components, angular-directives, angularjs, angular4
Ng Select
⭐ Native angular select component
Stars: ✭ 2,781 (+17281.25%)
Mutual labels:  angular-components, angular2, angular4, angular5
ionic-modal-custom-transitions
Add Custom Transitions to Ionic Modals.
Stars: ✭ 22 (+37.5%)
Mutual labels:  angular2, angular4, angular5
angular-progress-bar
This component allow you to easy incorporate progress-bar to angular/ionic project, providing binding and color options
Stars: ✭ 26 (+62.5%)
Mutual labels:  angular2, angular4, angular5
ng2-timezone-selector
A simple Angular module to create a timezone selector using moment-timezone.
Stars: ✭ 12 (-25%)
Mutual labels:  angular2, angular4, angular5
Ngx Smart Modal
Modal/Dialog component crafted for Angular
Stars: ✭ 256 (+1500%)
Mutual labels:  angular2, angular4, angular5
ngx-smart-loader
Smart loader handler to manage loaders everywhere in Angular apps.
Stars: ✭ 28 (+75%)
Mutual labels:  angular2, angular4, angular5
Ngx Datatable
✨ A feature-rich yet lightweight data-table crafted for Angular
Stars: ✭ 4,415 (+27493.75%)
Mutual labels:  angular-components, angular2, angular4
Ng Http Loader
🍡 Smart angular HTTP interceptor - Intercepts automagically HTTP requests and shows a spinkit spinner / loader / progress bar
Stars: ✭ 327 (+1943.75%)
Mutual labels:  angular2, angular4, angular5
Angular Material App
基于最新Angular 9框架与Material 2技术的web中后台前端应用框架。
Stars: ✭ 509 (+3081.25%)
Mutual labels:  angular2, angular4, angular5
Ng Snotify
Angular 2+ Notification Center
Stars: ✭ 304 (+1800%)
Mutual labels:  angular2, angular4, angular5

Angular pREST

It is a wrapper service to use with pREST API.

NPM: https://www.npmjs.com/package/angular-prest

What is pREST?

Install

npm install angular-prest --save

Example use:

You need to provide config data to the angular-prest service. Just import AngularPrestModule and put it in "imports" passing your config data to forRoot().

Ex:

yours app.module.ts

import { AngularPrestModule } from 'angular-prest';

and put AngularPrestModule in imports:

ex:

{
  ...
  imports: [
    AngularPrestModule.forRoot({
      localStorageData: 'the-localstorage-keyword',
      tokenPath: 'path-to-token',
      baseUrl: 'the-base-prest-service-url'
    })
  ]
  ...
}

that is all you need, now you can import the AngularPrestService in yours components angular and use it. o/

ex:

component example!

import { Component } from '@angular/core';

import { AngularPrestService } from 'angular-prest';


@Component({
  selector: 'app-example',
  templateUrl: './example.component.html',
  styleUrls: ['./example.component.css']
})
export class ExampleComponent {

  constructor(
    private prestService: AngularPrestService
  ) { }

  ...

}
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].