12g-env-template 中文文档教程
12g-env-template
该包根据您的本地 .env
文件创建一个模板文件。 它会清空所有值,但会保留注释和换行符。
Usage
安装依赖项:
$ npm install --save 12g-env-template
然后在您的代码中要求它:
var template = require('12g-env-template');
然后创建一个模板文件:
template.create()
或者使用选项:
template.create('.env.production', '.env.example')
Methods
.create([input file], [output file])
默认情况下,它将采用 。 env
作为输入并使用 .env.template
作为输出。
.exists()
返回模板文件是否已经存在。
12g-env-template
This package creates a template file based on your local .env
file. It will empty out all values, but it will leave comments and newlines in.
Usage
Install the dependency:
$ npm install --save 12g-env-template
Then require it in your code:
var template = require('12g-env-template');
Then create a template file:
template.create()
Or with options:
template.create('.env.production', '.env.example')
Methods
.create([input file], [output file])
By default, it will take .env
as input and use .env.template
as output.
.exists()
Returns whether the template file already exists.