0.0.5 • Published 3 years ago

dotenv-cache v0.0.5

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

dotenv-cache

这是一个使用 npm 发包, ts 工程, 编译使用 vite,参考 dotenv

配置本地 .env

必须配置.env 才可以正常执行,以下是一个 .env 配置的例子

ENV = test;
PORT = 3000;

test

test code

如下例子:

import env from "../lib";

env.config();
console.log("init env", env.envCache);
console.log(env.set("PORT", 10));
console.log(env.get("PORT"));
console.log(env.set("ENV", "prod"));
console.log(env.get("ENV"));
console.log("review env", env.envCache);
//优先获取.env配置,不存在获取process.env
console.log(env.get("ALLUSERSPROFILE"));
0.0.5

3 years ago

0.0.4

3 years ago

0.0.3

3 years ago

0.0.2

3 years ago

0.0.1

3 years ago