itayadler / mechanize-js

Mechanize is a Javascript library that enables automated web interaction.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

mechanize

NPM Version NPM Downloads MIT License Node.js Version Build Status AppVeyor Build Status Test Coverage Codecov Status Code Climate Gitter Dependency Status Greenkeeper badge

The Mechanize module is used for automating interaction with websites. Mechanize automatically stores and sends cookies, follows redirects, can follow links, and submit forms. Form fields can be populated and submitted. Mechanize also keeps track of the sites that you have visited as a history.

Getting Started

From the root folder, you can run the get_page example:

node examples/get_page.js

To load from a specific URL:

node examples/get_page.js "http://www.cnn.com"

The example gets the page and then performs a console.log() on all of the returned object data.

Posting a form

For form posting, you can run the submit_form example:

node examples/submit_form.js "http://localhost/"

The example POSTs a username and password to the /login path at the specificied URL

Chaining page accesses

For an example of chaining requests, you can run the submit_form_chain example:

node examples/submit_form_chain.js

Logging into Twitter and getting personal notifications

To see an example of chaining to log into Twitter and access the notifications page, run the twitter_notifications example:

node examples/twitter_notifications.js MYTWITTERUSERNAME MYTWITTERPASSWORD

The example gets the Twitter login page, fills out the username and password fields, logs into Twitter, gets the private notifications page, and displays the returned results.

Installation

From the mechanize directory, run npm install:

npm install

Dependencies

cookiejar >= 2.1.2
libxmljs >= 0.19.5
mime >= 2.3.1
request >= 2.88.0

Documentation

mechanize-js

Credits

This borrows heavily from Aaron Patterson's mechanize Ruby gem.

Contributors

  • 佐藤
  • Dan Rahmel
  • Anders Hjelm

About

Mechanize is a Javascript library that enables automated web interaction.

License:MIT License


Languages

Language:JavaScript 100.0%