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
- Host: GitHub
- URL: https://github.com/repcomm/reliance
- Owner: RepComm
- Created: 2021-03-14T05:03:30.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2021-03-20T04:56:07.000Z (about 5 years ago)
- Last Synced: 2025-09-17T20:01:16.610Z (8 months ago)
- Language: TypeScript
- Size: 77.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: ReadMe.md
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.