env-doctor

Installation

env-doctor can be installed globally or run directly with npx.

The easiest way to use env-doctor is with npx - no installation required:

npx @theaccessibleteam/env-doctor

This always uses the latest version.

Global Installation

Install globally to use env-doctor command anywhere:

import Tabs from ‘@theme/Tabs’; import TabItem from ‘@theme/TabItem’;

```bash npm install -g @theaccessibleteam/env-doctor ``` ```bash pnpm add -g @theaccessibleteam/env-doctor ``` ```bash yarn global add @theaccessibleteam/env-doctor ```

Then run:

env-doctor

Project Installation

Install as a dev dependency in your project:

```bash npm install -D @theaccessibleteam/env-doctor ``` ```bash pnpm add -D @theaccessibleteam/env-doctor ``` ```bash yarn add -D @theaccessibleteam/env-doctor ```

Add to your package.json scripts:

{
  "scripts": {
    "env:check": "env-doctor",
    "env:fix": "env-doctor fix"
  }
}

Requirements

Verifying Installation

Check that env-doctor is installed correctly:

env-doctor --version
# env-doctor v1.0.0

Next Steps