Tagged Questions
Jade - Template engine for Node.js
12
votes
2answers
2k views
Jade - Template Engine: How to check if a variable exists
I'm currently using jade on a new project. I want to render a page and check if a variable available.
app.js
app.get('/register', function(req, res){
res.render('register', {
locals: {
...
11
votes
4answers
2k views
ExpressJS: how to output pretty html
I've noticed that while using ExpressJS for Node.js, it outputs the html code without any newline characters or tabs. It's not very pretty, although it could technically be more efficient for ...
7
votes
4answers
952 views
How can I change from docbook to restructuredText?
I have a 30-ish page manual in docbook. However, working with docbook is so painful that I don't really update it. I want to switch to restructedText instead.
I can't find any direct translator (the ...
6
votes
3answers
7k views
Jade and NodeJs, any good tutorials?
I have started working with NodeJs. First, I was just using it for providing simple REST api which has access to NOSQL databases. Now I also want to build html pages and use NodeJS to serve static ...
5
votes
3answers
1k views
Using Jade Templates (jade-lang.com) client-side
I'd like to use Jade templates client-side. Preferably generated using the Rails 3.1 asset pipeline. I can't really figure out how to do this.
Anyone who've stumbled upon the same problem and found a ...
5
votes
3answers
574 views
PHP vs Node.js - Is HTML Rendering slower in Node.js with Jade?
Assuming that we have millions of requests per day. Is the HTML processing in Node.js with Jade slower or faster than PHP's render engine? Or doesn't matter because the difference is really small?
...
5
votes
1answer
667 views
Benchmarking HAML vs JADE vs HTML in PHP?
I'm interested in the performance of templating languages in PHP. I've been watching node.js tutorials and am really impressed by the use of JADE (http://jade-lang.com).
I see that JADE can be used ...
5
votes
3answers
3k views
How do I pass content from a template to a layout in Express?
I have a basic Express server:
// server.js:
var Express = require('express');
app = Express.createServer();
app.configure(function(){
app.set('views', Path.join(__dirname, 'views'));
...
5
votes
2answers
1k views
SWT problem with syncExec()
this is my first question on stackoverflow (sorry about my english). I'll try to explain the problem as well I can.
I have an swt application with a foreground jade application in which I have a ...
4
votes
1answer
124 views
Does it make sense to render templates server-side?
I'm learning about the tempting engine Jade bundled with Express. As I understand, Jade allows for server-side rendering. Isn't that suboptimal for two reasons:
1) The server has to compute more to ...
4
votes
2answers
309 views
What's the best way (or package) to build a static site using Node.js?
In Short
What's the best way to set up a static blog with Markdown and RSS support, just like this guy did, but use Node and a JavaScript web-framework instead of Python & Django?
In Length
...
4
votes
2answers
368 views
Node says Jade has no method “renderFile”, why?
I installed jade (npm install jade) and went over to their github page to grab some examples. This is what I wanted to execute:
code.jade:
- var title = "Things"
h1= title
ul#users
- each user, ...
4
votes
1answer
1k views
Backbone.js Jade and looping over model
I am getting a little confused about templating using backbone with jade/underscore.
I have a backbone model with a couple of arrays in it and am not sure how to render the array attributes. I could ...
4
votes
3answers
1k views
How do I render partials with jade without express.js?
Only info I found was this:
http://forrst.com/posts/Node_js_Jade_Import_Jade_File-CZW
I replicated the suggested folder structure (views/partials) But it didn't work, as soon as I put
...
4
votes
2answers
976 views
Using javascript code in Jade views - if(variable) shows undefined instead of passing
So this is a recurring issue I have and haven't found another example on SO so here goes:
When rendering Jade templates I get 'variableName' undefined even when using -if(variableName) in the ...
4
votes
4answers
3k views
Node.js with Express: Importing client-side javascript using script tags in Jade views?
I've got a node.js express server running with the Jade template engine.
I've got a layout jade file which imports the body of individual views like so:
!!!
html
head
title= title || ...
4
votes
3answers
572 views
What about Line Breaks in Jade?
I'm pretty sure that this is a no-brainer but I didn't find any snippet of sample code.
What's the best way to insert line breaks (aka the good ol' br/)?
As far as I can see if I put a "br" at the ...
4
votes
2answers
666 views
jade template engine: html beautifier?
I'm using jade template engine with ExpressJS on Node.js. It outputs a html with single line. No indentation at all. I couldn't find any beautifier option.
4
votes
4answers
598 views
What are Groovy/Grails/Hibernate/JBoss/Jade in very simple terms?
I am new to Java. Its only been six months but I do understand Java.
While reading about it sometimes, I come across these terms - Groovy, Grails, Hibernate, JBoss, Jade and many more.
I know I can ...
3
votes
3answers
110 views
Inline condition in Jade
- if (typeof(person) == 'undefined')
input(type="text", name="person[Name]")
- else
input(type="text", name="person[Name]", value="#{person.Name}")
Is there any way to write this inline? ...
3
votes
1answer
723 views
Syntax highlighting for Jade in Sublime Text 2?
I just started using Sublime Text 2 on Mac. I also just started using Jade (http://jade-lang.com) for my views in Node.js, and am wondering if there is a way to add syntax highlighting for Jade into ...
3
votes
2answers
367 views
Node.js JADE linebreaks in source?
I wonder, why i don't see any linebreaks in my sourcecode if i parse my jade template. It looks like this:
!!! 5
html
head
title= title
link(rel='stylesheet', href='/stylesheets/css.css')
...
3
votes
1answer
249 views
A client-side JS framework with templates and caching?
I use node.js on server side, express.js and jade. I have written a small wrapper function to fill jade templates on the client side. I think I'll use requireJS and jQuery on client side, but have not ...
3
votes
2answers
658 views
Accessing Express.js req or session from Jade template
I am wondering if there is an easy way to access Express.js' req or session variables from within a Jade template without passing it in through the normal response.
Or is this the only way?
...
3
votes
3answers
1k views
JADE + EXPRESS: Iterating over object in inline JS code (client-side)?
i want to implement a google map based on its api. i want to add a path based on coordinates to it. therefore i get my coordinates from my model and want to iterate over the object to fille the map ...
3
votes
1answer
2k views
Dynamic html pages with Jade, NodeJS, Express
I have a big json object containing cell data from a sample spreadsheet that has been retrieved from redis keystore. I want to show it in a html table format in the jade template. But for now all i ...
3
votes
2answers
713 views
node.js Unexpected identifier anywhere the file is called
I'm writing an app in node.js and recently i had an unexpected error on all my project.
When i try to call a model in my browser , i always get a
SyntaxError: Unexpected identifier
On any function ...
3
votes
1answer
555 views
Put Jade local variable in tag attribute
I want to put Jade variable in tag attribute but it isn't evaluated.
a(href="/logout/#{user.name}")
3
votes
3answers
2k views
jade template engine (under node.js): multi-line block without pipe symbol
I'm currently using Jade on a new project. It seems well-suited to composing webapp layouts, but not for writing static content, such as a web page of elements containing text.
For example, to ...
3
votes
1answer
220 views
Unit testing Jade
What techniques and design strategies have people used to aid in unit testing Jade applications? In particular, how do people typically go about testing Behaviours - which are tightly coupled to the ...
3
votes
2answers
538 views
Do you use Jade and what's your opinion of it?
Do you or have you ever used Jade and what are its advantages and disadvantages of it in your opinion? For example:
Speed of development?
Performance issues with it as an interpreted language and ...
2
votes
4answers
95 views
How do I close the container <div> in a loop?
I have a list of products and I want to show an ad in the product feed.
I want something like:
<div id="container">
<div id="product">Bla..</div>
<div ...
2
votes
3answers
62 views
Loop in Jade engine
i want to use a simple loop like for(int i=0; i<10; i++){} how do i use it in jade engine. I'm working with node.js and use expressjs framework
2
votes
1answer
143 views
In Express.js, how can I render a Jade partial-view without a “response” object?
Using Express.js, I'd like to render a partial-view from a Jade template to a variable.
Usually, you render a partial-view directly to the response object:
response.partial('templatePath', {a:1, ...
2
votes
1answer
52 views
Variable in partial different than in parent template
This is my code in index.jade:
- each question in questions
- console.log('Question in index.jade: ', question);
!=partial('question', question)
And this is my code in question.jade:
- ...
2
votes
1answer
286 views
How to use Jade/Haml with Rails 3.1 asset pipeline and backbone.js
Currently I am using backbone-rails in my Rails app. I would like to know how to use client side Haml/Jade backbone.js with that gem and the rails asset pipline.
2
votes
4answers
124 views
Updating server-side rendering client-side
I have a server-side templating engine, Jade, which I use to render a layout. When the client receives the layout for the first time, there will only be small subsequent changes in the contents of the ...
2
votes
1answer
74 views
Jade - way to add dynamic includes
I'd like to do something like the following within a jade template.
include page-content/#{view.template}
As this won't work I have ended up with.
-if(view.path==="/")
include ../page_content/home
...
2
votes
2answers
161 views
How can express and jade does not compress html?
I using express and jade, but when I debug I doesn't want jade compress my html, are there any way to pass an option jade globally and make it does not compress html.
2
votes
1answer
227 views
node.js jade template - custom syntax and replacements?
I'm trying to get jade to automatically generate urls for me:
so if I have a user link like this:
.userLink
a(href="/#{user}") #{user}
I want to be able to replace it with something like ...
2
votes
2answers
126 views
How can I pass JS objects from the server-side to the clientside in NodeJS
In PHP I used to pass objects from the backend to the front end in JSON form, using script tags.
<script>
var serversideStuff = '<?php echo json_encode($serversideArray); ?>';
...
2
votes
2answers
219 views
HAML or Jade template syntax available for Python?
Are there any template engines for Python with a syntax similar to Jade or HAML?
2
votes
1answer
267 views
Managing state with scalatra
I understand that Scalatra is a lightweight framework. However, I'm wondering if there are any tricks for managing small amounts of state. I have a form with a textarea and a few checkboxes. For ...
2
votes
2answers
181 views
Sharing layout information between Jade and Javascript
I have a Node.js/Jade-based site and I'm trying to add some interactivity with some simple bits of Javascript.
In particular, I'm trying to set up a button that adds a new row to a table.
The table ...
2
votes
1answer
139 views
What are the pros and cons of using a template engine like Jade?
I'm looking into developing a web app with Node.js. I'm coming from a PHP background where I didn't use a template engine (besides PHP itself) and I have always just written straight HTML. So, why ...
2
votes
1answer
227 views
node.js jade - Unable to access nested array elements
Sorry if this is a really basic question, but I cannot find any examples similar to the issue I am trying to solve.
Can somebody please explain why I am not able to access a nested array of elements ...
2
votes
0answers
224 views
Why won't Jade format its output correctly in Express.js
I am using Jade in Express.js and I noticed that the html output is all in one line. On the Jade website ( http://scalate.fusesource.org/documentation/jade-syntax.html ) it says that formatted output ...
2
votes
1answer
176 views
How to make the Jade template compress inline javascript automatically?
when I check the html page source, the HTML tags and text content are compressed without blank and line, but inline javascript.
2
votes
1answer
507 views
(not) passing a local variables to Jade templates in Express (node.js)
Here is my scenario: I have a login.jade template where I authenticate users. Inside that template I have a few if's like:
- if (badLogin)
div#loginErr
| <strong>Please try ...
2
votes
1answer
317 views
What is the equivalent of yield in jade?
In Ruby/Sinatra/Haml I would write:
!!! 5
%html{:lang => 'en'}
%head
%meta{:charset => 'utf-8'}
%title= @title
%body
=yield
What would it look like in Node/Express/Jade?