npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

camel-harness

v1.1.3

Published

Node.js - Electron - NW.js controller for Perl 5 scripts

Downloads

57

Readme

camel-harness

Travis CI Build Status Snyk Status Maintainability

Node.js - Electron - NW.js package for asynchronous handling of Perl scripts

Quick Start

npm install camel-harness

const camelHarness = require("camel-harness");

let perlTest = {};
perlTest.script = "/test/test.pl";

perlTest.stdoutFunction = function (stdout) {
  console.log(stdout);
};

camelHarness.startScript(perlTest);

Core Dependency

child_process

External Dependency

Perl interpreter identified by filename on PATH or full pathname

camel-harness npm package test will fail if no perl binary is available on PATH.

API

All settings of a Perl script executed by camel-harness are stored in a JavaScript object with an arbitrary name and the following object properties:

  • script
    String for Perl script full path or Perl code executed as an one-liner
    This object property is mandatory.

    perlTest.script = "/full/path/to/test.pl";

    The -e interpreter switch must be set when Perl code is executed in one-liner mode.
    Perl code must not be surrounded in single quotes and all double quotes must be escaped.

    One-liner example:

    let oneLiner = {};
    
    oneLiner.interpreterSwitches = [];
    oneLiner.interpreterSwitches.push("-e");
    
    oneLiner.script = "use English; print \"Perl $PERL_VERSION\";"
    
    oneLiner.stdoutFunction = function (stdout) {
      console.log(`${stdout}`);
    };
    
    camelHarness.startScript(oneLiner);
  • stdoutFunction
    will be executed every time data is available on STDOUT
    The only parameter passed to the stdoutFunction is the STDOUT String.

    perlTest.stdoutFunction = function (stdout) {
      document.getElementById("DOM-element-id").textContent = stdout;
    };
  • stderrFunction
    will be executed every time data is available on STDERR
    The only parameter passed to the stderrFunction is the STDERR String.

    perlTest.stderrFunction = function (stderr) {
      console.log("Perl script STDERR:\n");
      console.log(stderr);
    };
  • errorFunction
    will be executed on Perl script error
    The only parameter passed to the errorFunction is the error Object.

    The errorFunction can generate a message when Perl interpreter is not found:

    perlTest.errorFunction = function (error) {
      if (error.code === "ENOENT") {
        console.log("Perl interpreter was not found.");
      }
    };
  • exitFunction
    will be executed when Perl script has ended
    The only parameter passed to the exitFunction is the exit code String.

    The exitFunction can generate a message when Perl script is not found:

    perlTest.exitFunction = function (exitCode) {
      if (exitCode === 2) {
        console.log("Perl script was not found.");
      }
    };
  • perlInterpreter
    String for a Perl interpreter: either filename on PATH or full pathname
    If no perlInterpreter is defined, perl binary on PATH is used, if available.

    perlTest.interpreter = "/full/path/to/perl";
  • interpreterSwitches
    Array for Perl interpreter switches

    perlTest.interpreterSwitches = [];
    perlTest.interpreterSwitches.push("-W");
  • scriptArguments
    Array for Perl script arguments

    perlTest.scriptArguments = [];
    perlTest.scriptArguments.push("argument-one");
    perlTest.scriptArguments.push("argument-two");
  • options
    Object for Perl script options passed to the child_process core module.
    Click here for a full list of all available child_process options.

  • options.cwd
    String for a new Perl script current working directory

    perlTest.options = {};
    perlTest.options.cwd = "/full/path/to/current-working-directory";;
  • options.env
    Object for a new Perl script environment

    Script environment with an inherited PATH and a new variable:

    perlTest.options = {};
    perlTest.options.env = {};
    perlTest.options.env.PATH = process.env.PATH;
    perlTest.options.env.TEST = "test";
  • options.detached
    Boolean option for starting detached Perl processes like servers

    options.detached must be set to true and
    options.stdio must be set to "ignore" to
    start a detached process without receiving anything from it.
    A process detached with the above options can run even after its parent has ended.

    Example settings for a Perl server application:

    let perlServer = {};
    perlServer.script = "/path/to/perl-server-application";
    
    perlServer.options = {};
    perlServer.options.detached = true;
    perlServer.options.stdio = "ignore";
    
    const camelHarness = require("camel-harness");
    camelHarness.startScript(perlServer);
    
    perlServer.scriptHandler.unref();
  • inputData
    String or Function supplying user data as its return value.
    inputData is written on script STDIN.

    inputData function with no dependencies:

    perlTest.inputData = function () {
      let data = document.getElementById("input-box-id").value;
      return data;
    }

Interactive Scripts

camel-harness can also start and communicate with interactive scripts having their own event loops and capable of repeatedly receiving STDIN input. Use the following code to send data to an interactive script waiting for input on STDIN:

let data = document.getElementById("interactive-script-input").value;
perlTest.scriptHandler.stdin.write(data);

camel-harness demo packages for Electron and NW.js include a Perl script that can be constantly fed with data from an HTML interface. Perl with the AnyEvent CPAN module has to be available on PATH.

Electron Demo

NW.js Demo

Credits

License

MIT 2016 - 2018
Dimitar D. Mitov