New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More

remote-task

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

remote-task

Task runner

1.0.2
Version published
Weekly downloads
3
-50%
Maintainers
1
Weekly downloads
 
Created

remote-task

Simple server for remotely running tasks and logging their output to a given file

Installation

npm install remote-task

or

npm install --save remote-task

Usage

Server:

var remoteTask = require('remote-task');

var server = remoteTask('tasks.log');

server.listen(3000);

Client:

var remoteTask = require('remote-task');

var remoteControl = remoteTask.remoteStream(3000, '127.0.0.1'); //IP address is optional, arguments are passed to net.connect()

remoteControl.write(['cd', '/tmp']);
remoteControl.write(['touch', 'helloworld']);
remoteControl.write({end: true});

remoteControl.on('data', function(result){
  console.log(result.status); //success, hopefully
});

FAQs

Package last updated on 12 Jun 2015

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