krotovic / parcel-plugin-interpolate-html

Parcel plugin that interpolates ENV in HTML files

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

parcel-plugin-interpolate-html

Parcel plugin that interpolates ENV in HTML files

Installation

yarn add --dev parcel-plugin-interpolate-html
or
npm i -d parcel-plugin-interpolate-html

Attention: parcel-bundler has to be installed

Usage

There is no need to enable the plugin in any configuration file. If you want to use it you can do so after installing.
You have to escape the ENV with %% around it e.g. %example%.

Example

index.html

<!DOCTYPE html>
<html>
  <head>
    <meta charset="UTF-8" />
    <title>%title%</title>
  </head>
</html>

.env

title=Example

run it
parcel index.html

output

<!DOCTYPE html>
<html>
  <head>
    <meta charset="UTF-8" />
    <title>Example</title>
  </head>
</html>

About

Parcel plugin that interpolates ENV in HTML files

License:MIT License


Languages

Language:JavaScript 100.0%