0.0.2 • Published 11 years ago

get-view-state v0.0.2

Weekly downloads
2
License
-
Repository
github
Last release
11 years ago

Get View State

Extract the view state value from an html page parsed with cheerio

Installation

npm install -S get-view-state

Usage

var inspect = require('eyespect').inspector();
var cheerio = require('cheerio')
var getViewState = require('get-view-state')

// file path to a webpage with a view state element in the html
var filePath = path.join(__dirname, 'data/yesViewState.html') 
var html = fs.readFileSync(filePath, 'utf8')
var $ = cheerio.load(html)

// extract the value attribute from the view state element
var viewState = getViewState($)
inspect(viewState, 'extracted view state')