Code Monkey home page Code Monkey logo

node-twig's Introduction

node-twig

A small Node.js module that lets you render Twig templates using the original PHP implementation.
The package also supports Express.js so this can be used as a template engine.

There are a already some packages that render Twig templates but all use alternative implementations. The problem is that at the time of writing no other library seems to have all features the original PHP implementation has. That's the reason why we created this package.

Install

Install this package through NPM.

npm install node-twig --save 

Usage

Standalone

var renderFile = require('node-twig').renderFile;

renderFile('/full/path/to/template.twig', options, function (error, template) {
  // ... do something with the rendered template. :)
});

or with ES6/ES7

import { renderFile } from 'node-twig';

renderFile('/full/path/to/template.twig', options, (error, template) => {
  // ... do something with the rendered template. :)
});

Express

var express = require('express');
var app = express();
var createEngine = require('node-twig').createEngine;

// See available options below this example.
app.engine('.twig', createEngine({
  root: __dirname + '/views',
}));

app.set('views', './views');
app.set('view engine', 'twig');

app.get('/', function (req, res) {
  // The second argument is basically the same options
  // object like above. Most of the time you will be passing
  // context data that will be available in the template.
  res.render('index', {
    context: {
      foo: 'bar',
      stuff: ['This', 'can', 'be', 'anything']
    }
  });
});

Options

The options object can be passed to the renderFile() function to configure the Twig engine. For convinience the createEngine() function can also consume the options which will then be the global defaults for the runtime. This is useful for global settings such as the root path, but not so useful for context information.

root

default: null
The absolute path to the main template directory. In Express this is probably the same as the value you set for views in app.set('views', './your-root') but please use an absolute path.

context

default: {}
The value of the context option will be available inside the Twig template. You can use scalar values, arrays or objects at any depths.

extensions

default: []
Since Twig is a PHP library there is no (easy) way to make it extandable inside Node. That's the reason why we provide you with the extensions option.

An extension is just a function that takes a reference (Always use the & sign for the parameter) to the Twig environment which can then be used to define custom functions or filters. To allow for greater flexibility you can add multiple files.

Define your extensions like so:

var options = {
  extensions: [
    {
      file: '/absolute/path/to/php/file.php',
      func: 'myTwigExtension'
    }
  ]
};

Your PHP file could look like this:

<?php

function myTwigExtension(\Twig_Environment &$twig) {
  $twig->addFunction('url', new \Twig_SimpleFunction('url', function ($context, $destination) {
    return 'something-fancy';
  }));
}

node-twig's People

Contributors

benward avatar evanlovely avatar mamoschli avatar

Stargazers

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

Watchers

 avatar  avatar  avatar

node-twig's Issues

Error in Windows 10

Hi,

I try to use your package under Windows 10, but when i acces to my page, i have the following error :

Error: Command failed: C:\WINDOWS\system32\cmd.exe /s /c "php I:\wamp\www\pmd-starterpack\node_modules\exec-php\lib\php\cli.php -pC:\Users\Ethyde\AppData\Local\Temp\tmp-5412vj0cn3k.tmp -rC:\Users\Ethyde\AppData\Local\Temp\tmp-5412bdmaq8g.tmp"

at ChildProcess.exithandler (child_process.js:213:12)
at emitTwo (events.js:100:13)
at ChildProcess.emit (events.js:185:7)
at maybeClose (internal/child_process.js:821:16)
at Process.ChildProcess._handle.onexit (internal/child_process.js:211:5)``

Can you help me ?
Thx.

Accessing the vars in twig template

  1. I have done everything according to the documentation, and I have tried using a combination of different methods but still to no avail.

I have tried the code below and the tried to reference this var in the main file like so :
// none of the below worked.
{{ foo ~ context.foo ~ options.foo } }

router.get('/orders', function(req, res) {
res.render('orders',
{
foo: 'bar',
}
});
});

  1. I cant seem to use the dump() function. How would I be able to use that?

delimiters

Hello;
i've search on the docs, but i've not found how to change delimiters ? from {{}} to [{ }] ?

"Command failed" with custom twig filter

When I try to add and use a custom twig filter -- see example here -- I get the following error:

{ Error: Command failed: php /Users/ekaufman/twig-test/node_modules/exec-php/lib/php/cli.php -p/var/folders/r1/_2bh2l655811g6vp_k_d25pm0000gn/T/tmp-644438slkqo0.2ejc3di.tmp -r/var/folders/r1/_2bh2l655811g6vp_k_d25pm0000gn/T/tmp-6444339j6t05.dua3jtt9.tmp

    at ChildProcess.exithandler (child_process.js:206:12)
    at emitTwo (events.js:106:13)
    at ChildProcess.emit (events.js:191:7)
    at maybeClose (internal/child_process.js:877:16)
    at Process.ChildProcess._handle.onexit (internal/child_process.js:226:5)
  killed: false,
  code: 255,
  signal: null,
  cmd: 'php /Users/ekaufman/twig-test/node_modules/exec-php/lib/php/cli.php -p/var/folders/r1/_2bh2l655811g6vp_k_d25pm0000gn/T/tmp-644438slkqo0.2ejc3di.tmp -r/var/folders/r1/_2bh2l655811g6vp_k_d25pm0000gn/T/tmp-6444339j6t05.dua3jtt9.tmp' }

Where instead I'd expect it to render:

So, you're from Texas

await in renderFile

It's possible to use something like that ?

txtContent = await Twig.renderFile(fSourceFile2, templateGlobalValues);

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.