cookies.txt
Advanced tools
Comparing version 0.0.1 to 0.1.0
@@ -11,3 +11,6 @@ { | ||
], | ||
"version": "0.0.1", | ||
"scripts": { | ||
"test": "node test/test.js" | ||
}, | ||
"version": "0.1.0", | ||
"author": "Inaction <Inaction.me@gmail.com> (http://inaction.me)", | ||
@@ -22,7 +25,7 @@ "repository": { | ||
"engines": { | ||
"node": ">= 0.4.1 < 0.7.0" | ||
"node": ">= 0.4.1" | ||
}, | ||
"main": "index", | ||
"main": "index.js", | ||
"dependencies": {}, | ||
"devDependencies": {} | ||
} |
@@ -0,2 +1,20 @@ | ||
[![Build Status](https://travis-ci.org/mxfli/node-cookies.txt.png)](https://travis-ci.org/mxfli/node-cookies.txt) | ||
#README | ||
This is a _wget cookies.txt_ formart parser for nodejs. | ||
Convert wget cookies.txt format file into JSON boject. | ||
##Install | ||
```npm install cookies.txt``` | ||
##Usage | ||
``` | ||
var cookie = require('cookies.txt'); | ||
cookie.parse('your cookies.txt file path here.', function(jsonCookieObj){ | ||
//your codes here | ||
//... | ||
}); | ||
``` | ||
##License | ||
MIT |
2746
21
3
50