# SciDuct Command Line Utilities

This repository contains a set of command line utilities for SciDuct implemented with Javascript.

## Dependencies
- NodeJS

## Installation

### Install with NPM

This assumes a global shared install location.  

```
sudo npm install sciduct-cli -g
```

You can install as a regular user without sudo and -g, but you will need to setup the paths to the install location (usually ./node_modules/.bin)


### Updating with npm 

```
sudo npm update sciduct-cli -g
```

### Install/Run from repository

```
git clone https://github.com/NSSAC/sciduct-cli-js.git
cd sciduct-cli-js
npm install

#you may want to add this to your path
export PATH=$PATH:/path/to/sciduct_cli-js/bin
```

### Updating repository
```
cd sciduct-cli-js
git pull
npm install
```


