pug

Pug - 健壮、优雅、功能丰富的Node.js模板引擎。(Pug – robust, elegant, feature rich template engine for Node.js. )

Github星跟蹤圖

Pug是受Haml影响很大的高性能模板引擎,用于Node.js和浏览器的JavaScript实现。 这个项目以前被称为“Jade”,因"Jade"为注册商标而改为现名。

Pug的一般渲染过程很简单。 pug.compile()将将Pug源代码编译成一个JavaScript函数,它将一个数据对象(称为“locals”)作为参数。 使用数据调用该结果函数,并且voilà!将返回一个HTML数据字符串。
编译的函数可以重新使用,并使用不同的数据集进行调用。
//- template.pugp #{name}'s Pug source code!
const pug = require('pug');//Compile the source codeconst compiledFunction = pug.compileFile('template.pug');//Render a set of dataconsole.log(compiledFunction({  name: 'Timothy'}));//"<p>Timothy's Pug source code!</p>"//Render another set of dataconsole.log(compiledFunction({  name: 'Forbes'}));//"<p>Forbes's Pug source code!</p>"

Pug还提供将编译和渲染结合到一个步骤中的pug.render()系列函数。 但是,每次调用渲染时,模板函数都将被重新编译,这可能会影响性能。 或者,您可以使用缓存选项与render,它将自动将编译的函数存储到内部缓存中。

const pug = require('pug');//Compile template.pug, and render a set of dataconsole.log(pug.renderFile('template.pug', {  name: 'Timothy'}));//"<p>Timothy's Pug source code!</p>"

概覽

名稱與所有者pugjs/pug
主編程語言JavaScript
編程語言HTML (語言數: 7)
平台
許可證
發布數244
最新版本名稱pug-runtime@3.0.1 (發布於 )
第一版名稱0.0.2 (發布於 )
創建於2010-06-23 01:05:42
推送於2024-03-04 06:18:49
最后一次提交2021-12-23 17:15:31
星數21.5k
關注者數541
派生數2k
提交數2.6k
已啟用問題?
問題數2565
打開的問題數288
拉請求數501
打開的拉請求數22
關閉的拉請求數333
已啟用Wiki?
已存檔?
是復刻?
已鎖定?
是鏡像?
是私有?

Pug

Full documentation is at pugjs.org

Pug is a high-performance template engine heavily influenced by Haml
and implemented with JavaScript for Node.js and browsers. For bug reports,
feature requests and questions, open an issue.
For discussion join the chat room.

You can test drive Pug online here.

Professionally supported pug is now available

Build Status
Coverage Status
NPM version
Join Gitter Chat
OpenCollective
OpenCollective

Dependency Status, Package, Dependencies, Dev Dependencies, -------------, :-------------, :-----, mono-repo top, Dependency Status, devDependencies Status, pug, Dependencies Status, Dependencies Status, pug-attrs, Dependencies Status, Dependencies Status, pug-code-gen, Dependencies Status, Dependencies Status, pug-error, Dependencies Status, Dependencies Status, pug-filters, Dependencies Status, Dependencies Status, pug-lexer, Dependencies Status, Dependencies Status, pug-linker, Dependencies Status, Dependencies Status, pug-load, Dependencies Status, Dependencies Status, pug-parser, Dependencies Status, Dependencies Status, pug-runtime, Dependencies Status, Dependencies Status, pug-strip-comments, Dependencies Status, Dependencies Status, pug-walk, Dependencies Status, Dependencies Status, ## Rename from "Jade"

This project was formerly known as "Jade". However, it was revealed to us that "Jade" is a registered trademark; as a result, a rename was needed. After some discussion among the maintainers, "Pug" was chosen as the new name for this project. As of version 2, "pug" is the official package name.

If your package or app currently uses jade, don't worry: we have secured permissions to continue to occupy that package name, although all new versions will be released under pug.

Before the renaming, work had already begun on “Jade 2.0.0”. Therefore, the rename to Pug coincided with the major version bump. As a result, upgrading from Jade to Pug will be the same process as upgrading any other package with a major version bump.

The syntax of Pug has several differences, deprecations, and removals compared to its predecessor. These differences are documented in #2305.

The website and documentation for Pug are still being updated. But if you are new to Pug, you should get started with the new syntax and install the Pug package from npm.

Installation

Package

To use Pug in your own JavaScript projects:

$ npm install pug

Command Line

After installing the latest version of Node.js, install with:

$ npm install pug-cli -g

and run with

$ pug --help

Syntax

Pug is a clean, whitespace sensitive syntax for writing HTML. Here is a simple example:

doctype html
html(lang="en")
  head
    title= pageTitle
    script(type='text/javascript').
      if (foo) bar(1 + 5)
  body
    h1 Pug - node template engine
    #container.col
      if youAreUsingPug
        p You are amazing
      else
        p Get on it!
      p.
        Pug is a terse and simple templating language with a
        strong focus on performance and powerful features.

Pug transforms the above to:

<!DOCTYPE html>
<html lang="en">
  <head>
    <title>Pug</title>
    <script type="text/javascript">
      if (foo) bar(1 + 5)
    </script>
  </head>
  <body>
    <h1>Pug - node template engine</h1>
    <div id="container" class="col">
      <p>You are amazing</p>
      <p>Pug is a terse and simple templating language with a strong focus on performance and powerful features.</p>
    </div>
  </body>
</html>

API

For full API, see pugjs.org/api/reference.html

var pug = require('pug');

// compile
var fn = pug.compile('string of pug', options);
var html = fn(locals);

// render
var html = pug.render('string of pug', merge(options, locals));

// renderFile
var html = pug.renderFile('filename.pug', merge(options, locals));

Options

  • filename Used in exceptions, and required when using includes
  • compileDebug When false no debug instrumentation is compiled
  • pretty Add pretty-indentation whitespace to output (false by default)

Browser Support

The latest version of pug can be downloaded for the browser in standalone form. It only supports the very latest browsers, though, and is a large file. It is recommended that you pre-compile your pug templates to JavaScript.

To compile a template for use on the client using the command line, do:

$ pug --client --no-debug filename.pug

which will produce filename.js containing the compiled template.

Tutorials

Implementations in other languages

Ports in other languages

Ports to other languages, with very close syntax:

Equivalents in other languages

Templates engines for other languages with a different syntax, but a similar philosophy:

Framework implementations/adapters

Embedded view engines for frameworks:

CMS plugins

Additional Resources

Backers

Support us with a monthly donation and help us continue our activities. [Become a backer]






























Sponsors

Become a sponsor and get your logo on our README on Github with a link to your site. [Become a sponsor]






























License

MIT

去到頂部