0.0.1 • Published 2 years ago

envirocheck v0.0.1

Weekly downloads
-
License
MIT
Repository
-
Last release
2 years ago

Envirocheck

Easily make sure required environment services are running before start a project. Envirocheck will validate all needed services are running and provide instructions on how to install the missing services.

Usage

npm install envirocheck

Define your dependencies in the .envirocheck.yml file:

name: Sample Project Name
dependencies:
 - mongodb
 - redis
 - node: true
   version: ">=14.0.0"

Add envirocheck in your package.json file:

"scripts": {
   "start:dev": "envirocheck && <YOUR_RUN_SCRIPT>"
}

Features

Coming Soon