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

pipelinedog

v0.2.17

Published

Command line interface for PipelineDog

Downloads

9

Readme

PipelineDog-CLI

A command line interface for PipelineDog.

Installation

  • First, make sure you have Node.js installed on your machine. To check,

    node -v

    You should see a version number.

    If not, you need to install Node.js first.

    • Install using Linuxbrew

      • Install Linuxbrew
      ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Linuxbrew/install/master/install)"
      • Install node
      brew install node
    • Installing using Binary (without sudo access)

      • For example, download Linux binary x64 platform in home folder. You should download the binary that suits your platform:
      cd ~
      wget https://nodejs.org/dist/v6.11.3/node-v6.11.3-linux-x64.tar.xz
      • Unzip the package:
      tar -xz node-v6.11.3-linux-x64.tar.xz
      • Add executables to PATH:
      PATH=$PATH:/home/node-v6.11.3-linux-x64/bin

For certain Linux distribution (e.g., Ubuntu 14.04), a legacy version of npm is installed under the name "nodejs", not "node". For these systems, a current version of (v6 or later) should be installed.

For installing node through packager manager and additional information on installing Node.js, please refer to the Nodejs installation guide.

  • Once Node.js is installed, install the PipelineDog CLI:

    npm install -g pipelinedog
  • After doing this, you'll be able to see the help information by typing:

    pipelinedog -h

    in the terminal.

Usage:

  • Use

    pipelinedog -h

    to invoke the manual:

    Usage: pipelinedog [options]
    
    Options:
    
      -h, --help            output usage information
      -v, --version         output the version number
      -p, --project <path>  your PipelineDog project file
      -l, --list <path>     file lists for the run, separated by commas
      -o, --output [path]   path to output shell command file
  • For a comprehensive documentation and explanation of concepts, please visit the PipelineDog Wiki

Example:

  • An example for running commandline PipelineDog:

    • Copy the content of the example PipelineDog project at http://pipeline.dog/gatk.yml and save it as a local file named gatk.yml, or download the file using:
    wget http://pipeline.dog/gatk.yml
    • Copy the content of the example list file at http://pipeline.dog/Default_List and save it as a local file named Default_List, or download the file using:
    wget http://pipeline.dog/Default_List
    • In the same folder, run
    pipelinedog -p gatk.yml -l Default_List -o cmd.sh
    • The command output will be saved in cmd.sh. It can be later executed in a Linux environment with appropiate tools installed. To view the content of cmd.sh, run
    cat cmd.sh