Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/christiangracia/bash-script-generator
This repository is for a TypeScript NPM package I made that reads dependency installation files like requirements.text or package.json and generates long bash script commands for quick installation in Linux, Python, and JavaScript environments
https://github.com/christiangracia/bash-script-generator
bash bash-script generator npm package pip python typescript
Last synced: about 1 month ago
JSON representation
This repository is for a TypeScript NPM package I made that reads dependency installation files like requirements.text or package.json and generates long bash script commands for quick installation in Linux, Python, and JavaScript environments
- Host: GitHub
- URL: https://github.com/christiangracia/bash-script-generator
- Owner: ChristianGracia
- License: mit
- Created: 2022-01-24T22:55:38.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2022-02-03T00:38:56.000Z (almost 3 years ago)
- Last Synced: 2024-02-27T13:43:03.639Z (9 months ago)
- Topics: bash, bash-script, generator, npm, package, pip, python, typescript
- Language: TypeScript
- Homepage: https://www.npmjs.com/package/bash-script-dependency-generator
- Size: 334 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Bash Installation Script Generator
This repository is for a TypeScript NPM package I made that reads dependency installation files like requirements.text or package.json and generates long bash script commands for quick installation in Linux, Python, and JavaScript environments
This tool allows you to rebuild your bash installation scripts very fast and makes it easier to maintain.
You can read dependencies from a file like requirements.txt for Python or package.json for JavaScript/TypeScript.
This is still in development so this package's main use is to generate very long scripts using hardcoded objects/arrays in the Generator class or using a file like requirements.txt to generate a long chain of pip installs or package.json for npm installs (regular dependencies and dev)
![pic](https://i.imgur.com/cKVykHp.png)
**I made this from scratch in a couple hours so this is very Work in Progress and a lot of features to be implemented**
Click the image below to watch demo
[![Video](https://i.imgur.com/v3XHNKT.png)](https://i.imgur.com/fIsW1WI.mp4)
**Other dependency installation file types will get added in the future**
If you do not have dependency files or want to use an unsupported language you can hardcode in your dependencies as seen below in **'node_modules/bash-script-dependency-generator/class/Generator.js'**. Here you can update one large array of strings called nonVersionedDependencies **if package version does not matter** or one large object called versionedDependencies **if you want to keep track of versions**. This allows you to be able to update your dependencies and change the wording of the installation quick and easy.
![pic](https://i.imgur.com/n4rYntY.png)
---
Editing nonVersionedDependencies Array when version does not matter
Ex. install python3-dev and python3-pip without specific version
```
// This is for arrays of package names when version isn't important
// Leave this as empty array unless you want to hardcode each package
const nonVersionedDependencies = [
"python3-dev",
"python3-pip"
];
```
---
Editing versionedDependencies object when specific versions is required
Ex. install pip at 20.3.4 and requests as 2.25.1
```
// This is for an object with keys equal to package names and values of the package version for when specific version is important
// Leave this as empty object unless you want to hardcode in the package + version
const versionedDependencies = {
pip: "20.3.4",
requests: "2.25.1",
};
```
---
## Demo
clone this repo with
`git clone https://github.com/ChristianGracia/Bash-Script-Generator.git`
run in root of project after repository is cloned
Creating pip install script from examples/requirements.txt
`npm run pip`
Creating npm install script from examples/package.json
`npm run npm`
---
## Installation
`npm i --dev bash-script-dependency-generator@latest`
## Use
Run the following command where language is the installation language (Ex. Python would be `pip install`, Linux would use `sudo apt-get install`)
`node node_modules/bash-script-dependency-generator/ INSTALLATION_LANGUAGE FILE`
File argument is optional, if omitted, a script will be attempted to be built from whatever is in the versionedDependencies object or nonVersionedDependencies array
**Python dependencies - Pip**
Run in terminal if hardcoded versionedDependencyObject property on Generator class
`node node_modules/bash-script-dependency-generator/ pip`
Run in terminal if you have the dependency file
`node node_modules/bash-script-dependency-generator/ pip PATH/TO/requirements.txt`
**Debian Linux - APT**
Run in terminal if hardcoded nonVersionedDependency array property on Generator class
`node node_modules/bash-script-dependency-generator/ apt`
**JavaScript/TypeScript - NPM**
Run in terminal
`node node_modules/bash-script-dependency-generator/ npm package.json`
## Tests
![pic](https://i.imgur.com/3PPUpRJ.png)
run tests with jest using
`npm run test`