GithubHelp home page GithubHelp logo

theseally / vite-plugin-pug-transformer Goto Github PK

View Code? Open in Web Editor NEW
35.0 1.0 2.0 124 KB

Vite plugin for supporting pug templates

License: MIT License

JavaScript 99.53% Pug 0.47%
vite pug-template-engine pug

vite-plugin-pug-transformer's Introduction

Test

Vite plugin pug transformer

This plugin adds support for pug template engine in vite html entrypoint.

Plugin uses Vite specific hook (transformIndexHtml) for transforming pug into html.

Table of Contents

Requirements

  • Vite v2+
  • Node.js version depends on Vite version:
    • Vite v2 requires Node.js v12.22 or higher;
    • Vite v3, v4 requires Node.js v14.18 or higher;
    • Vite v5 requires Node.js v18 or higher;

Installation

You can use any package manager to install plugin:

npm install vite-plugin-pug-transformer

// OR
yarn add vite-plugin-pug-transformer

// OR
pnpm install vite-plugin-pug-transformer

Then it can be added to vite config:

// vite.config.js
import vitePugPlugin from 'vite-plugin-pug-transformer';

export default {
  plugins: [vitePugPlugin()],
};

Usage

Plugin syntax don't break html semantics. It uses template tag with two attributes data-type and data-src. Pass pug to data-type attribute and path to pug template to data-src attribute.

<template data-type="pug" data-src="./template.pug"></template>

<!-- OR with self-closed tag -->
<template data-type="pug" data-src="./template.pug" />

Also you can use multiple template tags on page

Plugin options

Plugin supports additional options

Parameter Default Description
pugOptions {} Pug options
pugLocals {} Variables that can be used in pug template. Can be used to pass env variables

Example

Vite entrypoint:

<!-- index.html -->
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Pug Plugin</title>
</head>
<body>
  <template data-type="pug" data-src="./template.pug"></template>
</body>
</html>

Pug template:

<!-- template.pug -->
p #{bundler} is the best

Vite config:

// vite.config.js
import vitePugPlugin from 'vite-plugin-pug-transformer';

const locals = { bundler: 'Vite' };

export default {
  plugins: [vitePugPlugin({ pugLocals: locals })],
};

The result would be:

<!-- index.html -->
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Pug Plugin</title>
</head>
<body>
  <p>Vite is the best</p>
</body>
</html>

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.