# dotenvr

> dotenv Recursion

Latest version **0.2.3** (published 2023-12-26) · ISC license · 0 weekly downloads

## Install

```sh
npm install dotenvr
pnpm add dotenvr
yarn add dotenvr
bun add dotenvr
```

## Health

**Score 25/100 (F)** — status: abandoned.

Positive: has types; no vulnerabilities; high quality score.

Warnings: low downloads; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.2.3 |
| Published | 2023-12-26 |
| First published | 2016-05-13 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | bundled |
| Module format | CommonJS |
| Dependencies | 1 |
| Unpacked size | 34.1 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | lanhao |
| Maintainers | lanhao |
| Keywords | dotenv |

## Links

- npm: https://www.npmjs.com/package/dotenvr
- Repository: https://github.com/captainblue2013/dotenvR
- Homepage: https://github.com/captainblue2013/dotenvR#readme
- Issues: https://github.com/captainblue2013/dotenvR/issues
- npm.io page: https://npm.io/package/dotenvr

## Dependencies (1)

- [@mohism/utils](https://npm.io/package/@mohism/utils.md) ^1.0.2

## Alternatives

- [jsforce](https://npm.io/package/jsforce.md) — 851.2K weekly downloads
- [react-native-qrcode-svg](https://npm.io/package/react-native-qrcode-svg.md) — 693.5K weekly downloads
- [@salesforce/plugin-data](https://npm.io/package/@salesforce/plugin-data.md) — 394.9K weekly downloads
- [@backstage/plugin-search-common](https://npm.io/package/@backstage/plugin-search-common.md) — 308.5K weekly downloads
- [@chain-registry/types](https://npm.io/package/@chain-registry/types.md) — 38.4K weekly downloads

## Recent versions

- 0.2.3 (latest) — 2023-12-26
- 0.2.2 — 2023-12-26
- 0.2.1 — 2023-12-26
- 0.2.0 — 2020-10-14
- 0.1.17 — 2020-10-14
- 0.1.15 — 2018-04-13
- 0.1.14 — 2018-04-13
- 0.1.13 — 2018-01-15
- 0.1.12 — 2018-01-15
- 0.1.11 — 2017-12-30
- 0.1.10 — 2017-12-14
- 0.1.9 — 2017-10-20
- 0.1.8 — 2017-10-14
- 0.1.7 — 2017-08-22
- 0.1.6 — 2017-08-17
- … 6 more at https://npm.io/package/dotenvr/versions

## README

# dotenvR
---

## Install

    npm install dotenvr --save
## Usage

    var config = require('dotenvr').load(); //默认当前路径 .env 
    //var config = require('dotenvr').load('/path/of/your/.env');
   
## Example

   .env
   
    APP = demo
    A.B.C = 123
   
   var config = require('dotenvr').load(); // also see process.env
   
    {
        APP:'demo',
        A:{
            B:{
                C:123
            }
        }
    }

---
_Source: https://npm.io/package/dotenvr · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
