Jade is a template engine.
45
votes
6answers
10k 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 ...
11
votes
5answers
13k 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 || ...
6
votes
4answers
5k 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 ...
8
votes
2answers
1k views
Integrating Jade in Yeoman's server/watch/reload tasks
I've been playing around with Yeoman & Jade. I've created a small test app via yeoman init angular (it's an angular app, but that's not the point here)...
When I enter yeoman server at the ...
10
votes
5answers
5k 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'));
...
18
votes
1answer
6k views
Passing objects to client in node + express + jade?
I have a pretty heavyweight query on the server that results in a new page render, and I'd like to pass along some of the results of the query to the client (as a javascript array of objects). This is ...
14
votes
3answers
8k views
Using Jade templates in Backbone.js
I love the HAML-like syntax of Jade's templating engine in Node.js, and I would love to use it client-side within Backbone.js.
I've seen Backbone commonly using Underscore.js templating in the ...
8
votes
1answer
5k views
How to use D3 in Node.js properly?
I've been trying to invoke D3 within Node.js. I tried firstly to import d3.v2.js from D3's website with the script tag, but then read this thread:
Wanna run d3 from a Cakefile
Where D3's author ...
6
votes
4answers
4k 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?
...
9
votes
2answers
2k views
jade templating syntax support for eclipse?
I have just starting using the nodejs templating engine jade. Unfortunately my IDE eclipse doesn't seem to have support for this syntax and is not highlighting correctly.
Is it possible to add ...
7
votes
2answers
2k 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, ...
6
votes
1answer
1k views
how to escape <> in javascript underscore template?
when using underscore template i want to interpolate a value in anchor's href attribute like
a(href= "<%= id %>", class='products') //underscore template in jade
but the out put is
<a ...
4
votes
5answers
3k views
How to compile jade templates in to JavaScript functions to use them on client side?
I want to use compiled jade templates on client side. How should I compile them to get javascript files ?
https://github.com/visionmedia/jade
3
votes
7answers
3k views
node.js + express 3 + socket.io = Can't set headers after they are sent
I'm new to learning node.js and seem to have run into an error that can't get to fix.
Its a very simple and beginners code so shouldn't need much explanation, more over it works fine on localhost, ...
1
vote
1answer
539 views
Auto-compile Jade in Webstorm on Windows
I recently discovered Jade and want to give it a try for a new static website. I like the terse syntax and the templating capabilities, so much better than raw HTML. I'm editing in Webstorm 6, which ...
8
votes
3answers
3k views
Accessing Express.js local variables in client side JavaScript
Curious if I'm doing this right and if not how you guys would approach this.
I have a Jade template that needs to render some data retrieved from a MongoDB database and I also need to have access to ...
1
vote
1answer
93 views
Jade: Change active menu item in parent template
I have a navigation bar in my parent jade template and I'd like to highlight the item which is currently in view. So if I'm on the blog page,
ul
li Home
li.active Blog
li Contact Us
li About
...
0
votes
0answers
162 views
On android ,How to implements translucent materials by GLSL?
As 3d software (3dmax, maya) handles the translucent materials such as jade, wax
Mostly through coloring shader (material ball).in opengl es 2.0,If I want to achieve
the same effect of the ...
55
votes
6answers
13k views
Syntax highlighting for Jade in Sublime Text 2?
I just started using Sublime Text 2 on Mac. I also just started using Jade for my views in Node.js, and am wondering if there is a way to add syntax highlighting for Jade into Sublime Text 2.
13
votes
6answers
3k views
Jade: Links inside a paragraph
I'm trying to author a few paragraphs with Jade, but finding it difficult when there are links inside a paragraph.
The best I can come up with, and I'm wondering if there's a way to do it with less ...
12
votes
4answers
10k 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 ...
8
votes
3answers
2k 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?
...
11
votes
3answers
6k views
Jade template layouts not working in combination with Node.js
I'm trying to create a simple server in Node.js which uses Jade templates and layouts.
For some reason it will only load the template and not the layout.
Here's what I've got:
main.js
var express = ...
5
votes
1answer
3k 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
2answers
2k views
Jade - Loading templates from different directories
I'm trying to work on Peepcode's Node.js Full Stack videos and it seems they're using an older version of express/jade. No mention of using block/extends to render layouts.
The setup used in the app ...
3
votes
3answers
2k views
Expressjs not loading stylesheets on heroku, giving 500 error
I'm running an Expressjs installation on heroku, and it's not loading the stylesheets.
I hit ctrl+u and then click on the stylesheet link, and get this error:
TypeError: Object #<SendStream> ...
10
votes
2answers
3k views
Jade template, how to pass concrete object to pages?
I have a jade template for my node.js project. I would like to send an object to the jade template and pass it to a function inside the page (to render something).
I am sure I send the right stuff ...
4
votes
4answers
957 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
2answers
2k views
Render Image Stored in Mongo (GridFS) with Node + Jade + Express
I have a small .png file stored in Mongo using GridFS. I would like to display the image in my web browser using Node + Express + Jade. I can retrieve the image fine e.g.:
...
3
votes
2answers
7k views
Passing an array to a JSON object for Jade rendering
I have a node.js server written in express and at a certain moment I send to some .jade page an array. The problem is that when rendering the Jade page, the Jade compiler renders the array as [object ...
2
votes
1answer
272 views
Is there any way to use multiple view engines with Express + Node.js
Scenario: I had developed some transactional pages using Node.js, Express + Handlebars as view engine and MongoDB.
Now the issue is during module integration I got some of the pages which are built ...
2
votes
1answer
162 views
Preserving newlines in Jade
Whenever I render a JADE template, I get all HTML in a single line. This makes it difficult to read in view-source mode. How can I tell JADE to create HTML which is properly indented?
Here is my ...
8
votes
4answers
4k 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
...
5
votes
3answers
4k 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 ...
3
votes
1answer
977 views
How does one add a conditional inside of a link in jade?
How does one add a conditional inside of a tag (link/anchor in my case) in jade?
Here's my pseudo code that of course won't work:
a(href="/foo", class="if (current_route[1] == 'foo'){active}") Go to ...
3
votes
4answers
634 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
2k views
How to include a css file in jade (without linking it)
I have this jade file:
!!! 5
html
head
title test include
style(type='text/css')
//- DOES NOT WORK!
include test.css
body
//- works
include test.css
div
//- ...
1
vote
3answers
988 views
Access current request in Express/Jade view
I have a layout Jade view that has a menu via unordered list, and I want to set the <li> to be <li class="active">...</li> when the current page is rendered in the browser.
I assume ...
0
votes
2answers
1k views
Express image upload and view in jade
I'm trying to upload an image and show it in express.
I configured my app to upload in 'public/images'
app.use(express.bodyParser({ keepExtensions: true, uploadDir: './public/images' }));
The ...
0
votes
1answer
540 views
passing data between server and client (node.js + mongodb)
I'm working with node.js express and mongodb, I have a input data from client, I need to pass the data to server look for its property and send to the client in another page.
Now I have problem with ...
0
votes
1answer
459 views
Jade - calling page specific css pages
I have page specific css files I would like to call automatically. Does anyone have a nice way of doing this elegantly?
8
votes
4answers
7k 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
7
votes
3answers
2k views
How to make Jade stop HTML encoding element attributes, and produce a literal string value?
UPDATE Jade v0.24.0 fixes this with a != syntax for attributes. option(value!='<%= id %>')
I'm trying to build an <option> with jade, where the value of the option is an UnderscoreJS ...
6
votes
1answer
2k 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
...
6
votes
1answer
4k views
help with displaying a variable in jade express
I'm trying to load some variables with res render like that:
res.render('blog_edit', {title: 'edit your blog', posts: "something"});
though title loads fine post always appears as undefined...
here ...
4
votes
2answers
2k views
Express redirecting doesn't change req.url
I have a route that redirects upon successful login
app.post('/login', function(req, res){
if(req.body.password === Server.cfg.auth.userPass) {
req.session.user = {nick: req.body.username, ...
3
votes
3answers
354 views
How to display arbitrary, schemaless data in HTML with node.js / mongodb
I'm using mongodb to store application error logs as json documents. I want to be able to format the error logs as HTML rather than returning the plain json to the browser. The logs are properly ...
3
votes
1answer
781 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 ...
3
votes
2answers
1k 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')
...
2
votes
2answers
2k views
Partial Not Defined in Jade
Here is what I have in index.jade.
And yes I am using express.js
extends layout
block content
h1 Invoices:
!= partial("invoice")
This matches what I see in every single Jade/Express tutorial. ...

