Search code examples
javascriptangularjscsvpapaparse

PapaParse with Angular JS


Liked the nice CSV parser & unparser of PapaParse. Can any one help me to get this combine with Angular JS.

I like to make PapaParse work in Angular Way. Trying for a solution.


Solution

  • You can use value to provide self contained third party libraries.

    angular.module('your.app')
        .value('yourLib', yourLib);
    

    Then in your controller, or service, you would bring it in the normal way using DI

    angular.module('your.app')
        .controller('YourController', YourController);
    
    YourController.$inject = ['yourLib'];
    function YourController(yourLib) {
    
       //. . .  
    } 
    

    If the third party line is a constructor function, requires it be newed, you may want to create a factory or a provider that has a method that accepts the passes params to the constructor returns a new instance.

    Edit

    After looking at PapaParse, you would want to register it with the angular injector using value.