Socket
Socket
Sign inDemoInstall

min-wd

Package Overview
Dependencies
3
Maintainers
1
Versions
37
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

min-wd


Version published
Maintainers
1
Install size
40.8 kB
Created

Changelog

Source

0.2.0

  • Added callback API
  • Simplified transform

Readme

Source

Minimal WebDriver

Pipes stdin to all configured browsers using the WebDriver protocol.

Repository: https://github.com/mantoni/min-webdriver


Install with npm

npm install min-wd -g

Usage

Put a config file name .min-wd in your project directory:

{
  "hostname": "localhost",
  "port": 4444,
  "browsers": [{
    "name": "internet explorer",
    "version": "9"
  }, {
    "name": "chrome"
  }]
}

Assume my-script.js contains this:

console.log('Hello %s!', 'browser');
process.exit(0);

Use with browserify:

$ browserify -t min-wd my-script.js | min-wd
= internet explorer 9 ========================================================
Hello browser!
= chrome * ===================================================================
Hello browser!

Testing with Mocha requires mocaccino:

$ browserify -t min-wd my-test.js | mocaccino -b -r list | min-wd

License

MIT

Keywords

FAQs

Last updated on 26 Jan 2014

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc