An open API service indexing awesome lists of open source software.

https://github.com/repcomm/reliance

An experiment C dependency/package manager written in TS/node.js
https://github.com/repcomm/reliance

Last synced: 10 days ago
JSON representation

An experiment C dependency/package manager written in TS/node.js

Awesome Lists containing this project

README

          

# reliance

## Usage
```bash
# installing a package
reliance install [opts]
reliance i [opts]

# uninstalling a package
reliance uninstall [opts]
reliance u [opts]

# listing install methods
reliance method list

# set the global default method
reliance method default set

# output default method onto console
reliance method default get
```

Options
```bash
# explicity use a specific source method
-method=wget

# explicity use a specific package file (instead of reliance.json)
-pkg=somefile.json
```

Install a package from github:
```bash
# create your folder
mkdir myproject

# navigate into it
cd myproject

reliance i user/repo -method=github
# or optionally specify branch
reliance i user/repo/branch -method=github
# or optionally specify branch and file
reliance i user/repo/branch/some/file.json -method=github
```

Note: `-method=github` is only required if reliance has another default method set.