1.0.5 • Published 7 years ago

read-fb-zip v1.0.5

Weekly downloads
4
License
ISC
Repository
github
Last release
7 years ago

Read Facebook Export Zip

Module to allow reading of facebook export

Install

    npm install read-fb-zip

Example Script

    var fbzip = require('read-fb-zip');

    fbzip.process({
            file:'/path-to-fbdata.zip',
            onLink:function(url){
                    //console.log('link: '+url)
            },
            onImage:function(image,album){
                    //console.log('album: '+album+' image: '+image)
            },
            onVideo:function(video,id){
                    //console.log('video: '+JSON.stringify(video)+' id: '+id)
            },
            onComplete:function(data){
                    console.log(data);
            }
    })
1.0.5

7 years ago

1.0.4

7 years ago

1.0.3

7 years ago

1.0.2

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago