/Package-Updater

Primary LanguageJavaScriptMIT LicenseMIT

Contributors Forks Stargazers Issues MIT License LinkedIn


Logo

Package Updater

A CLI tool built in Node js to check and update dependency version in github Repositories

About The Project

A CLI tool for updating dependencies in github repositories

(back to top)

Built With

(back to top)

Getting Started

Prerequisites

  • npm
    npm install npm@latest -g

Installation

  1. Clone the repo
    git clone https://github.com/dyte-submissions/dyte-vit-2022-HimanshuBarak.git

2.Install NPM packages

npm install
  1. You will need to create a github token for your account. Once the token is generated you can create .env file and set the token as follows

     GITHUB_TOKEN = "the_token_you_generated"

(back to top)

Usage

Using the following commands to run the tool

To check package verison

 node index.js -i input.csv axios@0.24.0 

For updation

 node index.js -i input.csv axios@0.24.0 -update

(back to top)