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

envdoctor

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

envdoctor

The framework for various tests / checks in the current environment

  • 0.0.3
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
8
increased by700%
Maintainers
1
Weekly downloads
 
Created
Source

envdoctor

⚠️ This is very early stage of the project. I've putted it together literally in few hours. Use on your own risk.

This is framework how to easily create set of test to ensure that environment is correctly setup.

It's kinda something like ESLint but to test your environment.

Install

yarn add envdoctor -D

How to use

First you have to create a configure file:

  • .doctorrc file in JSON or YAML format
  • .doctorrc.json file
  • .doctorrc.yaml, .doctorrc.yml, or .doctorrc.js file
  • doctor.config.js file exporting a JS object

Let's use .doctorrc.js as in example/ folder

module.exports = {
  extends: ["essentials"],
  rules: {
    "yarn-version": [2, "1.9.0"],
    "node-version": [2, "v8"]
  }
};

for essentials please install envdoctor-config-essentials package

Then we can add script into package.json

...
"scripts": {
  "doctor": "doctor"
},
...

Now you should be able to run

yarn run doctor

and you would get (if you pass the test :) )

✔ Check Node version
✔ Check Yarn version

Advanced configurations

extends

You can use either name (string) which should match installed package. We'll try to load envdoctor-config-<yourname> first, then it fallback to the full name.

You can also pass your own configuration as an object for example extends: ["essentials", require("./doctor")]. See /example implementation for more details.

rules

Every defined rule is automatically checked. You can change this with syntax

 "yarn-version": 0, // disable rule; [0], "off", "disable" acts the same

or you can change severity of the rule to "warn" by

 "yarn-version": [1, "1.9.0"], // you can also use "warn", ["warn] acts the same

Implementation of your own rule

This is actually really similar as example above

function ownRuleImplementation(arg) {
   return "Failed Hello " + arg;
}

ownRuleImplementation.description = "This is just example"

...

rules {
 "own-rule": [2, "World", ownRuleImplementation],
 ...
}

static description field could be also an function to get the same arguments as the check itself. Could be convenient for generic checks. (Check the testPort.js implementation in /example)

As you can see, if the function returns string, it means the check failed and the string is used as reason. To pass the check please return undefined, or boolean / true.

Implementation of your own configuration

Configuration is basically JSON object which defines the rules. Check the envdoctor-config-essentials implementation for example.

FAQs

Package last updated on 12 Nov 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

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