Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

gitro

Package Overview
Dependencies
Maintainers
1
Versions
14
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gitro - npm Package Compare versions

Comparing version 1.4.1 to 1.5.0

bin/gitro-express.js

11

bin/gitro-help.js
#! /usr/bin/env node
var shell = require("shelljs");
console.log('Available commands: gcom, gpush, gcap, gbuild, gtail, greact, gitro');
console.log(`Available commands:
gcom : Adds and commits ALL files,
gpush : Pulls from remote server to prevent issues and pushes ALL committed/staged files,
gcap : Runs gcom and gpush commands,
gbuild : Compiles TailwindCSS,
gtail : Installs TailwindCSS and its dependencies,
greact : Installs React, ReactDOM and React-router-dom@5,
gexpress: Installs ExpressJS and other useful dependencies for development,
gmern : Install Express, React and their dependencies for a basic MERN app,
gitro : Runs gbuild, gcom and gpush all at once`);

2

bin/gitro-react.js
#! /usr/bin/env node
var shell = require("shelljs");
shell.exec("npm install --save react-dom react-router-dom@5");
shell.exec("npm install --save react react-dom react-router-dom@5");
console.log('ReactDOM and React Router have been installed');
{
"name": "gitro",
"version": "1.4.1",
"description": "Run common Git and Tailwindcss commands fast and easily!",
"version": "1.5.0",
"description": "Run common JS development commands fast and easily!",
"main": "index.js",

@@ -16,5 +16,7 @@ "scripts": {},

"gitro-commit-push": "bin/gitro-cap.js",
"gtail": "bin/git-tail-init.js",
"gtail": "bin/gitro-tail-init.js",
"greact": "bin/gitro-react.js",
"gexpress": "bin/gitro-express.js",
"ghelp": "bin/gitro-help.js",
"gmern": "bin/gitro-mern.js",
"gitro": "bin/gitro.js"

@@ -21,0 +23,0 @@ },

******* Gitro NPM package *******
Version 1.4.1
Version 1.5.0

@@ -30,2 +30,3 @@ Gitro allows you to run the multiple Git commands and TailwindCSS compilation with one command. Gitro is TOTALLY free, open-source, easy to edit & install.

SUMMARY : Input file: /src/style.css | Output file: /src/assets/main.css
You can change this by editing the gitro-tailwind.js file in the package

@@ -39,6 +40,14 @@

-> To install ReactJS ReactDOM and React Router (v5)
-> To install Express, Mongoose, Concurrently, Nodemon & Body-parser
> gexpress
-> To install ReactJS, ReactDOM and React Router (v5)
> greact
-> To install MERN stack dependencies (ReactJS, ExpressJS and their dependencies)
> gmern
-> To install and initialize TailwindCSS

@@ -83,10 +92,9 @@

CHANGELOG
1.4.0 - Added Tailwindcss install and init commands
Added 'git pull' to the 'gpush' command
Added a 'ghelp' command to list available commands
Added ReactJS one-command dependencies installer (install react-router-dom@5 which uses 'switch' instead of 'routes')
You do not need to run gbuild everytime you use a TailwindCSS class anymore
1.5.0 - Added ExpressJS development dependencies installation command, added React itself to the "greact" command in case you don't have React installed already for that project, added a MERN dependencies installation command
1.4.1 - Added Tailwindcss install and init commands, added 'git pull' to the 'gpush' command, added a 'ghelp' command to list available commands, added ReactJS one-command dependencies installer (install react-router-dom@5 which uses 'switch' instead of 'routes'), You do not need to run gbuild everytime you use a TailwindCSS class anymore
1.3.1 - Changed commit message
1.3.0 - Changed "push" command to include upstream
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc