npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@cdf/cdf-ng

v2.0.38

Published

Content Delivery Framework for Angular

Downloads

64

Readme

Content Delivery Framework (CDF) for Angular (@cdf/cdf-ng)

version downloads

CDF-NG is a tool for making REST requests. CDF is a wrapper for Angular's HTTP implementation. CDF allows you to easily make one or multiple REST requests against different APIs. Multiple requests are treated as a single unit and results are returned in an array. You can subscribe to popular APIs via our admin tool ( CDF Admin Site ) where CDF will create and maintain access tokens on your behalf, or you can use your own APIs or APIs not available in our admin tool by simply supplying your access-token (you will be responsible for providing access-tokens). Happy Coding!

Requirements

CDF requires the latest version of Angular (at the time of this writing: 2.4.7).

  //package.json
  
  "dependencies": {
    "@angular/common": "2.4.7",
    "@angular/compiler": "2.4.7",
    "@angular/core": "2.4.7",
    "@angular/forms": "2.4.7",
    "@angular/http": "2.4.7",
    "@angular/platform-browser": "2.4.7",
    "@angular/platform-browser-dynamic": "2.4.7",
    "@angular/router": "3.4.7"
	...
  }

Installation

CDF requires creating an account at CDF Admin Site. Once you create an account, you will be able to register your application(s) with CDF. You will need a CDF Application Key (auto generated by CDF) in order to submit REST requests through CDF. The Application Key is used to identify your application in order to generate access tokens on your behalf for the APIs you have connected to your application. You still need an Application Key even if you do not connect your application to any APIs in CDF's API library.

Installing CDF in your Angular application:

    npm install @cdf/cdf-ng --save


    // app.module.ts
    import { CdfModule } from '@cdf/cdf-ng/lib';
    
    @NgModule({
      declarations: [ ... ],
      imports: [
        ...
        CdfModule,
      ],
      providers: [ ... ],
      bootstrap: [ ... ]
    })
    export class AppModule { }

Usage example

This example is making the following REST requests:

  • GetCloudCMSRepositoryList is a single GET request to Cloud CMS API. Cloud CMS is a CDF supported API.
  • GetMultipleRequestsFromAPI contains 4 requests (3 GETS, 1 POST).
import { Injectable } from '@angular/core';
import { Observable, Observer } from 'rxjs/Rx';
import { CdfRequestModel, CdfDataService } from '@cdf/cdf-ng/lib';

@Injectable()
export class DataService 
{
	constructor(private cdfDataService : CdfDataService)
	{
	}

	GetCloudCMSRepositoryList(): Observable<any> 
	{
		let request: CdfRequestModel = new CdfRequestModel('[CDF APPLICATION KEY]');			
		requestModel.AddGetRequest('https://api.cloudcms.com/repositories/');		
		
		return Observable.create(observer => 
		{
			this.cdfDataService.requestData(request)
			.subscribe
			(
				//SUCCESS
				rawJson =>
				{				
					observer.next(rawJson);
					observer.complete();
				},

				//ERROR
				err => 
				{
					console.log('**** AN ERROR HAS HAPPENED:', err);
				},

				//ON COMPLETE
				() => 
				{
					console.log('**** REQUEST HAS COMPLETED:');
				}
			)
		});				
	}

	GetMultipleRequestsFromAPI(): Observable<any> 
	{
		let request: CdfRequestModel = new CdfRequestModel('[CDF APPLICATION KEY]');				
		request.AddGetRequest('https://api.cloudcms.com/repositories/');
		request.AddGetRequest('https://api.cloudcms.com/projects/');
		request.AddGetRequest('https://api.cloudcms.com/applications');		
		request.AddPostRequest('https://api.cloudcms.com/repositories/query?limit=3&metadata=true&full=true', {"enableAuditing":true});		
		
		return Observable.create(observer => 
		{
			this.cdfDataService.requestData(request)
			.subscribe
			(
				//SUCCESS
				rawJson =>
				{				
					//rawJson is an array with 4 items, 1 for each request in the same order added above
					observer.next(rawJson);
					observer.complete();
				},

				//ERROR
				err => 
				{
					console.log('**** AN ERROR HAS HAPPENED:', err);
				},

				//ON COMPLETE
				() => 
				{
					console.log('**** REQUEST HAS COMPLETED:');
				}
			)
		});				
	}	
}

Using CDF with APIs not part of CDF API Library

If you want to access APIs not available through CDF, you simply have to call SaveToken static method found in CdfTokenService. SaveToken accepts the following:

  • URL (any URL to your API will do)
  • Token Type (defaults to Bearer)
  • Access Token

CdfTokenService uses the provided URL to your API to extract the API's host name. The host name is used to save your access token to localStorage. CDF uses API's URL host name for subsequent API requests to retrieve access token for each request. Token type defaults to Bearer. Access token is the value of the access token needed to access your API. You are responsible for making the call to your API's authenticatin process which should result in an access token for the API.

import { Injectable } from '@angular/core';
import { Observable, Observer } from 'rxjs/Rx';
import { CdfTokenService } from '@cdf/cdf-ng/lib';

@Injectable()
export class AuthService 
{
	constructor()
	{
	}

	AuthenticateUser(loginModel:any): Observable<any> 
	{
		//MAKE CALL TO AUTHENTICATE USER
		...
		
		let url: string = 'http://url-to-your-api.com';
		let authToken: string = [some value from your APIs authentication process]
		
		//SAVES AUTHTOKEN FOR YOUR API TO LOCAL STORAGE FOR SUBSEQUENT USE...
		CdfTokenService.SaveToken(url, 'Bearer', authToken)
			.subscribe
			(
				//SUCCESS
				tokenModel =>
				{
					//tokenModel is JSON object saved to localstorage
				},

				//ERROR
				err =>
				{ 
				},

				//COMPLETE
				() =>
				{ 
				}
			);
	}	
}

NOTE: you will need to call CdfTokenService.SaveToken whenever your API's access token is established. If your access token expires, you will need to call CdfTokenService.SaveToken to re-establish your new access token with CDF.

Helpful Links

Release History

  • < 2.0.31
    • Rounds and rounds of trial and error...

Meta

Tom Schreck – @tschreck[email protected]

https://github.com/tomschreck

License

MIT