• Stars
    star
    139
  • Rank 262,091 (Top 6 %)
  • Language
    Go
  • License
    ISC License
  • Created over 5 years ago
  • Updated about 5 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

🐶📦 Global Universal Project Manager -- Package manager, cli tool, scripts for all your projects and your system

dog






Global Universal Project Manager -- Package manager, CLI tool, and scripts for all your projects and your system. Whether you are a developer managing dependencies, or a sysadmin looking for your new toolbelt (bye bash!) you are among friends. Check the Wiki for documentation.

  • Fast. Written in native code, with real multi-threading.
  • 👓 Smart. Memory efficient solution using hard-link, which do not duplicate dependencies across project.
  • 🌍 Global. Windows, Mac and Linux compatibility.
  • 🌈 Universal. Usable in any kind of project (Ruby, JS, Go, C, Python, etc...)
  • 👗 Customizable. Flexible plugin system: make GuPM your own.
  • 👝 Future Proof. Let's make this the last PM you will ever need.
  • 🌳 Decentralized. You keep control of the sources you tap into.
  • 🐳 No dependencies. You don't need anythind else (you don't need NPM to use NPM's repository with GuPM)

This idea is born from the frustration of having to give up my habits whenever I would switch off Javascript and lose NPM (Whether it would be in Ruby, Go, or even situations outside of coding). GuPM is claiming to take inspiration from the best things in Brew, NPM, Gem, etc... And compile them in a single tool, usable in any project.

  • 📦 Packages Manager. Install packages from any repository and manage dependencies in a seamless way.
  • 🖥 CLI Manager. Install and use CLI tools in a flexible way without conflicts.
  • 🚏 Scripting. GuPM is bundled with GuScript, allowing you to build cross platform scripts for your project.
  • 🐙 Packed with features. Manage configs, git hooks, parallel executions, environment variables, CI, and more.
  • 🔥 Even more to come! See : Next for the roadmap of feature. You are welcomed to contribute!


Getting started :

Quick links

Installation

Linux and Mac OS :

⌨️ $ curl -fsSL https://azukaar.github.io/GuPM/install.sh | bash

Windows

💾 Windows_install.exe

JS/NPM example

This example is setting up a project using the NPM plugin. More details on how to use GuPM with node here.

Go example

This example is setting up a project using the Go plugin. More details on how to use GuPM with Go here.

Dependency Manager

New projects

In order to simply bootstrap a new project you can run g bootstrap you can also use b and add a provider g b -p npm

Make

This command will set up your project by getting dependencies. Adding a -p or --provider argument allows you to specify what provider to use initially. Please note you do NOT need to install npm / gem / whatever to use their corresponding provider, GuPM implement everything itself.

# reads gupm.json
g make

# reads package.json
g make -p npm

Install

# use default repo [Config in gupm.json]

g install mysql
g i mysql

# use brew

g install brew://mysql
g install -p brew mysql

# use NPM

g install npm://react@1 # will save in gupm.json
g install -p npm react@1 # will save in package.json

More commands in the wiki

GuPM management

Plugins

GuPM needs plugins to work with various repos :

# Install provider-go from the official repo
g plugin install https://azukaar.github.io/GuPM-official/repo:provider-go

See https://github.com/azukaar/gupm-official for a list of officially suported plugins. See https://github.com/azukaar/GuPM/wiki/how-to-create-a-provider to create your own.

updates

GuPM can be managed using :

g self upgrade

More commands in the wiki

Write GuPM scripts

You can use GuScript to write bash-like files, used for setting up your project, use it, or anything literally. Think of GuScript as a replacement for your bash scripts.

// name_setup.gs

var name = input('What is your name')
echo('Welcome' + name)
saveName(name)

GuScript is based on javascript, and therefore allow advanced object/arrays manipulations, function definitions, etc... Find more details about the available APIs in the wiki 1

VS Code

Add this to your settings.json to treat .gs file as javascript (temporary fix to plain text)

"files.associations": {
    "*.gs": "javascript"
}

Thanks!

Package Icon made by smashicons Dog Icon made by Freepik

More Repositories

1

Cosmos-Server

☁️ The Most Secure and Easy Selfhosted Home Server. Take control of your data and privacy without sacrificing security and stability (Authentication, anti-DDOS, anti-bot)
JavaScript
3,074
star
2

awesome-cosmos-cloud

List of tools, and resources to run your Cosmos Cloud
42
star
3

cosmos-servapps-official

Official repository for Cosmos apps on the market
JavaScript
35
star
4

electron-css

🔬 Clean and flexible framework agnostic Style in JS, without any of the fuss of CSS and JSX
TypeScript
30
star
5

cosmos-casaos-store

Conversion of the CasaOS app store for Cosmos
JavaScript
16
star
6

herm-js

JS Network framework for offline first progressive web apps
JavaScript
7
star
7

blossom-js

🌸 The web framework that will love you as much as you love it. Zero binding and 100% DOM powered.
JavaScript
6
star
8

memory-efficient-object

Memory efficient implementation of objects / arrays for bits and bytes mainpulation (int, char, uint, ...) in JS, using schema for serialisation
JavaScript
4
star
9

DraGo

🐉 React like library for Go, with hooks and a store. Support for browser, and desktop based application.
Go
3
star
10

cosmos-marketplace-example

Example marketplace for Cosmos. Fork to create your own
JavaScript
3
star
11

mc-fair-difficulty-overhaul

Per player difficulty, new expert+ difficulty, interesting mobs and mechanics
Java
3
star
12

GuPM-official

🐶📦 Official plugin repository for GuPM
JavaScript
2
star
13

blossom-js-plugins

🌸 Official plugins repository for Blossom JS (https://github.com/azukaar/blossom-js)
JavaScript
1
star
14

Cosmos-Docs

Documentation for Cosmos
JavaScript
1
star
15

crypto-exchange-manager

Client for multiple exchanges, supporting tickers informations, as well as addional features as I implement them.
JavaScript
1
star
16

cherry-tree

Compiler for the cherry language
JavaScript
1
star