Skip to content

Latest commit

 

History

History
62 lines (48 loc) · 2.16 KB

README.md

File metadata and controls

62 lines (48 loc) · 2.16 KB

ruche logo

Dependencies Status Build Status Code quality Code coverage Release Documentation

A developer-friendly Windows package manager

What is ruche ?

ruche is designed to help Windows developers to work. It takes care of software installations, updates, and alternatives versions switching.

Usage

You can use ruche in a terminal:

ruche install <package>
ruche uninstall <package>
ruche alternatives <package>

Or as a node module:

var ruche = require('ruche');
ruche.install(['git'], function (err, packages) {
  if (err) {
    // handle the error
  }
  console.log('Packages installed %s', packages)
});

Installation

If you have Node.js

npm install --global ruche

Documentation

Check the full documenation at Read The Docs

You are now ready to go!