12g-cleandotenv 中文文档教程

发布于 7年前 浏览 35 项目主页 更新于 3年前

12g-cleandotenv

这个包使您能够加载 .env 文件并将它们的值作为对象返回。

它清理:

  • Comment lines
  • Single or double quotes from values

Usage

const dotenv = require('12g-cleandotenv')

dotenv.load()
.then(vars => {
    console.log(vars)
})

Methods

.load([path])

加载一个 .env 文件并返回对象中清理过的变量,作为 Promise。

.clean(input)

清理 .env 文件的内容并返回对象中的变量。 env 文件内容输入可以是 stringobject

12g-cleandotenv

This package enables you to load .env files and return their values as an object.

It cleans out:

  • Comment lines
  • Single or double quotes from values

Usage

const dotenv = require('12g-cleandotenv')

dotenv.load()
.then(vars => {
    console.log(vars)
})

Methods

.load([path])

Loads a .env file and returns the cleaned up variables in an object, as a Promise.

.clean(input)

Cleans up the content of a .env file and returns the variables in an object. The env file content input can be a string or an object.

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文