GithubHelp home page GithubHelp logo

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

View Code? Open in Web Editor NEW
34.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>

vite-plugin-pug-transformer's People

Contributors

ai avatar muddv avatar theseally avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar

Forkers

relaxdd muddv

vite-plugin-pug-transformer's Issues

Update to Vite 5

Now we have warnings:

plugin 'vite-plugin-pug-transformer' uses deprecated 'enforce' option. Use 'order' option instead.
plugin 'vite-plugin-pug-transformer' uses deprecated 'transform' option. Use 'handler' option instead.

Should I use this project structure?

screenshot
It seems to me not correct, but I did not find another way to work it.
When creating a new page, should I create one html file and one template pug for this page? And then include the template pug in the html template?

How to use Images/pictures??

Everything works fine.
But when I try to call or use images doesn't work...
If I use an internet img source works... But for local files doesn't...

Support multipage

Currently, for a second entrypoint for rollup.js other than /index.html (e.g., /public/index.html)

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

isn't being rendered.

  • vite-plugin-pug-transformer 1.0.1
  • pug 3.0.2
  • vite 2.9.12

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.