Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

robotremote

Package Overview
Dependencies
Maintainers
1
Versions
25
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

robotremote - npm Package Compare versions

Comparing version 1.1.0 to 1.1.1

2

bin/botclient.js

@@ -8,3 +8,3 @@ #!/usr/bin/env node

var options = {host: process.argv[2], port: parseInt(process.argv[3], 10) };
var options = {host: process.argv[2] || 'localhost', port: parseInt(process.argv[3], 10) || 8270};
var serverString = options.host + ':' + options.port;

@@ -11,0 +11,0 @@

@@ -17,3 +17,3 @@ {

],
"version": "1.1.0",
"version": "1.1.1",
"preferGlobal": false,

@@ -20,0 +20,0 @@ "homepage": "https://github.com/comick/node-robotremoteserver",

@@ -13,3 +13,3 @@ # robotremote

Install [robot framework](http://code.google.com/p/robotframework/wiki/Installation) first. Then:
Install [robot framework](https://github.com/robotframework/robotframework/blob/master/INSTALL.rst) first. Then:

@@ -69,3 +69,3 @@ $ npm install robotremote

* All robot levels are supported including messages with timestamp through timestamp`Level` function.
* See http://robotframework.googlecode.com/hg/doc/userguide/RobotFrameworkUserGuide.html?r=2.8.5#logging-information
* See http://robotframework.org/robotframework/latest/RobotFrameworkUserGuide.html#logging-information
*

@@ -72,0 +72,0 @@ * @param str1

@@ -49,4 +49,4 @@ 'use strict';

var robot = require('../lib/robotremote');
var options = { host: process.argv[2], port: parseInt(process.argv[3], 10), timeout: 2000, allowStop: true };
var options = { host: process.argv[2] || 'localhost', port: parseInt(process.argv[3], 10) || 8270, timeout: 2000, allowStop: true };
var server = new robot.Server([lib], options);
}
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