Socket
Socket
Sign inDemoInstall

winchan

Package Overview
Dependencies
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

winchan - npm Package Compare versions

Comparing version 0.0.6 to 0.1.0

LICENSE.md

17

package.json
{
"name": "winchan",
"version": "0.0.6",
"version": "0.1.0",
"devDependencies": {
"express": "~2.5.11",
"postprocess": "~0.2.4"
"mocha": "^1.20.1",
"postprocess": "~0.2.4",
"selenium-webdriver": "^2.42.1",
"webdriver-manager": "0.0.6"
},
"main": "./winchan.js"
"scripts": {
"postinstall": "webdriver-manager update --chrome --standalone",
"integration": "mocha scenario"
},
"main": "./winchan.js",
"dependencies": {
"express": "^3.13.0"
}
}

@@ -73,3 +73,3 @@ ## An abstraction for opening browser windows cross domain

$ scripts/setup_dev_deps.sh
$ npm i
$ scripts/run_example.js

@@ -84,3 +84,3 @@

$ scripts/setup_dev_deps.sh
$ npm i
$ scripts/run_example.js

@@ -97,3 +97,3 @@

$ scripts/setup_dev_deps.sh
$ npm i
$ IP_ADDRESS=<my external IP> scripts/run_example.js

@@ -105,20 +105,1 @@

## LICENSE
Copyright (c) 2012 Lloyd Hilaiel
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to use,
copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the
Software, and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE
FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

@@ -9,4 +9,4 @@ #!/usr/bin/env node

var client = express.createServer(),
server = express.createServer();
var client = express(),
server = express();

@@ -30,4 +30,6 @@ var subMiddleware = postprocess(function(req, buf) {

module.exports = {client: client, server: server};
console.log("An example: http://" + IP_ADDRESS + ":8100/example");
console.log("A more complicated example: http://" + IP_ADDRESS + ":8100/complex_example");
console.log("Unit tests: http://" + IP_ADDRESS + ":8100/test");

@@ -137,3 +137,6 @@ var WinChan = (function() {

var w = window.open(opts.url, opts.window_name, opts.window_features);
var w = opts.popup || window.open(opts.url, opts.window_name, opts.window_features);
if (opts.popup) {
w.location.href = opts.url;
}

@@ -140,0 +143,0 @@ if (!messageTarget) messageTarget = w;

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc