Skip to content

Latest commit

 

History

History
44 lines (35 loc) · 946 Bytes

README.md

File metadata and controls

44 lines (35 loc) · 946 Bytes

cookies.txt

TestStatus:Test Status

#README This is a wget cookies.txt formart parser for nodejs.

Convert wget cookies.txt format file into JSON boject.

Working whith http.requst or request module.

##Install npm install cookies.txt

##Usage

var cookie = require('cookies.txt');
cookie.parse('your cookies.txt file path here.', function(jsonCookieObj){
  //your codes here 
  //...
});

Working with request module

var request = require('request');
var cookie = requeire('cookies.txt');

cookie.parse('your cookies.txt file path here.', function(jsonCookieObj){
  //your codes here 
  request.get({
      url:'the http url',
      jar:true, 
      encoding:null, 
      headers:{
        Cookie:cookie.getCookieString('the url')}})
    .pipe(AWritebleStreamInstance);
  //...
});

##License MIT