https://github.com/termermc/rdm
Rtfl package manager similar to NPM
https://github.com/termermc/rdm
Last synced: 3 months ago
JSON representation
Rtfl package manager similar to NPM
- Host: GitHub
- URL: https://github.com/termermc/rdm
- Owner: termermc
- License: mit
- Created: 2021-10-21T15:19:46.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-10-21T16:08:46.000Z (over 3 years ago)
- Last Synced: 2025-02-06T09:48:38.059Z (4 months ago)
- Language: Shell
- Size: 16.6 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# rdm
Rtfl package manager similar to NPM# Installing
To install, you need [Rtfl](https://github.com/termermc/rtflc) installed as "rtfl" on your system.For now, *Nix systems are supported, although you can compile RDM on any system that supports Rtfl.
To install, run `./install.sh` as root. This will install RDM in `/usr/local/bin`.
# Updating
Once you already have RDM installed, all you need to do in order to update is pull new changes from this repository, and then run `rdm run install` as root.# Using
RDM is useful for creating and managing Rtfl project.## Creating an Rtfl project
In a new directory, run `rdm init`. It will create a new project for you.## Installing packages in a project
To install a package in a project, run `rdm install [version]`.
If you leave out the version, it will let you choose, and will require you to choose each subsequent time you install project dependencies.
You can use `@latest` as the version to always choose the latest version of the package.