Skip to content

bisevac/dependency-check

Repository files navigation

Description

Dependency Outdated Check and Subscribe

You can check outdated dependency your github project.

AVAILABLE DEPENDENCY REPOSITORY

Installation

$ yarn install

Running the app

# development
$ npm run start

# watch mode
$ npm run start:dev

# production mode
$ npm run start:prod

Test

# unit tests
$ npm run test

# e2e tests
$ npm run test:e2e

# test coverage
$ npm run test:cov

API


Dependency Check And Subscribe

POST /dependency-check/

class RequestDTO {
  mails?: string[];
  url: string;
  subscribe: boolean;
}

class ResponseDTO {
  subscribeId: string|null;
  outdatedDependecyList: {
      type: string;
      packageName: string;
      currentVersion: string;
      latestVersion: string;
  }
}

EXAMPLE

curl --location --request POST 'localhost:3000/dependency-check' \
--header 'Content-Type: application/json' \
--data-raw '{
    "url":"https://github.com/nestjs/nest",
    "mails":["[email protected]"],
    "subscribe":true
}'

RESPONSE
{
    "outdatedDependecyList":[
        {
            "type":"npm",
            "packageName":"path-to-regexp",
            "latestVersion":"6.2.0",
            "currentVersion":"3.2.0"
        }
    ],
    "subscribeId":"227293034"
}

Dependency Check Unsubscribe

POST /dependency-check/unsubscribe

class RequestDTO {
  subscribeId: string;
}

class ResponseDTO {
  status: boolean;
}

EXAMPLE

curl --location --request POST 'localhost:3000/dependency-check/unsubscribe' \
--header 'Content-Type: application/json' \
--data-raw '{
    "subscribeId":"863325849"
}'

RESPONSE
{
    "status":false
}

About

Dependency Outdated Check and Subscribe

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published