Embedded JavaScript templates for node - Express compliant

learn more… | top users | synonyms

0
votes
3answers
32 views

SyntaxError: Unexpected token for at Object.Function (<anonymous>) node.js

I'm using Express, EJS and mongoose for a website learning exercise. Here is my index.js module: blog_model = require('./connection').blog_model; /* * GET home page. */ exports.index = ...
0
votes
0answers
20 views

I'm getting an indentation error in my styl file

I'm new to node and stylus. I have this .styl file that I wrote but I am getting a error saying expected "indent" got "outdent". style.styl html , body height: 100% width: 100% ...
0
votes
2answers
77 views

Is Jade or EJS better for Node.js templating? [closed]

Jade versus EJS, which one should I use and why? Are there any other express-compatible template engines that are good and why?
0
votes
1answer
21 views

NodeJs and Ejs Pass Arrays to page

I am trying to pass an array to an .ejs page, however when I try use var test ="<%= data %>"; console.log(test); I get the output [object Object],[object Object],[object Object],[object ...
-1
votes
0answers
20 views

Not working external stylesheet

Brief question: Node.js server, that renders page via: express = require('express'); app = express(); app.get('/gate', function (req, res) { res.render('gate.ejs') }); app.listen(process.env.PORT ...
1
vote
1answer
15 views

NodeJS Ejs Variable Render HTML

You can output variables using ejs like so PagesController.test = function() { this.title = 'test' this.render(); } <title><%= title %></title> However I tried including html ...
0
votes
2answers
31 views

How to create global variables accessible in all views using Express / Node.JS?

Ok, so I have built a blog using Jekyll and you can define variables in a file _config.yml which are accessible in all of the templates/layouts. I am currently using Node.JS / Express with EJS ...
0
votes
0answers
16 views

How do I upgrade from jquery-datalink?

I've got some old code that is using the linkFrom() function from a really old version of jquery-datalink and I've read that datalink is harmful so I'm looking to upgrade but I can't find anything ...
0
votes
1answer
38 views

How do I call a function defined in app.js from my ejs template?

I have a function defined in app.js var addUser = function(uname, pword, e_mail, name, callback){ var coll_model = mongoose.model('collaborator', User); var collaborator = new coll_model( { ...
0
votes
0answers
35 views

JQuery-UI not referencing

Ahoy! I have a JSFiddle where the code runs and executes perfectly fine referencing JQuery (1.9.1), JQuery UI (1.9.2), Bootstrap (2.3.1) onDOMready. http://jsfiddle.net/2Xsmx/ I then copy and ...
0
votes
3answers
78 views

Include HTML blocks Using node.js

This is what I want but probably can't have: Using node.js and express and maybe ejs, I would like to, while writing a regular HTML file in my client dir, server-side-include a template block of ...
0
votes
1answer
17 views

Conditionally Displaying EJS data

I am trying to reuse a a view in EJS. It just creates a list of the results of a database query. My code is <ul data-role="listview" data-theme="a"> <% for(var i=0; ...
0
votes
2answers
26 views

ejs include function can not find the template with html extension

My ejs engine set up is app.js is like below: // this parse html file as ejs file app.engine('.html', require('ejs').__express); app.set('view engine', 'html'); app.set('views', __dirname ...
0
votes
1answer
42 views

How to escape HTML in node.js EJS view?

I want to escape the html in bloglist[i].Text field. How to do that with EJS? <!DOCTYPE html> <html> <head> <title><%= title %></title> <link ...
0
votes
1answer
65 views

Inside Express/EJS templates, what is cleanest way to loop through an array?

I have an Express.js app set up using EJS templates. I successfully looped through an array with classic JS syntax: <% for (var i = 0; i < myArray.length; i++) { this = myArray[i]; // ...
0
votes
1answer
73 views

nodejs casperjs ejs express: settings values not seen by casperjs

CasperJS doesn't seem to be able to see values passed from express via app.settings. Is there something I am leaving out? Thanks in advance to anyone who can point me to a solution! Here is a hello ...
0
votes
1answer
27 views

Trying to use EJS with Node.js

I'm trying to setup my first app using EJS (Normally use Jade) and I've got it all setup and my pages are loading, I followed a tutorial on how to do it, this is my layout <!DOCTYPE html> ...
0
votes
1answer
71 views

Failed to lookup view in node.js ejs template while the template is only just renamed

I have a node.js application rendering in ejs 3 template. let 's say -there is one template, course.ejs, it used to work well in node.js. res.render('course', locals); However, today when I tried ...
5
votes
2answers
81 views

Pass variables to JavaScript in ExpressJS

I am completely lost on this; I am using NodeJS to fetch a JSON and I need to pass the variable to my page and have JavaScript use the data. app.get('/test', function(req, res) { ...
0
votes
1answer
52 views

Using Backbone Rails and am getting a `cannot load such file — ejs`

The backtrace explains nothing : ActionView::Template::Error (cannot load such file -- ejs (in /app/assets/javascripts/backbone/templates/questions/connections_game.jst.ejs)): This is really ...
0
votes
2answers
59 views

functions in ejs

What I'd like to have is something like this: app.js (node process, includes etc excluded for brevity but using ejs as rendering engine): app.get('/', function(req, res){ var ejsVariables = { ...
2
votes
1answer
104 views

Node.js Express framework generate broken app.js?

I'm new in Node.js and would like to crete a simple application with Express. npm install -g express npm install -g ejs express test -t ejs cd test/ npm install Now i have an application skeleton. ...
0
votes
0answers
111 views

How to define a “constant” and access it everywhere in NodeJS

I'm fiddling a bit with node.js and during my (so called) project I stumbled upon a problem that, although not totally deterrent, annoys the hell out of me. I work with PHP framework CodeIgniter ...
0
votes
1answer
104 views

Node.js and Express 3: Set app.locals that are loaded asynchrously

I am using Node.js and Express 3.0, and I'm pretty clear on the difference between app.locals and res.locals... I'd like to set some app.locals variables ('newest' and 'popular') that I want to ...
0
votes
0answers
25 views

Display sql query result in ejs file using node express

newbie here, I want to display my sql query result into my ejs file but I don't know how to. any help will be appreciated.
0
votes
1answer
52 views

How can I get ejs to work with mongoose?

I have a route that gets all of the clients and I'm trying to pass the client to ejs to render them. I'm getting the following error: Express 500 SyntaxError: Unexpected token { at Object.Function ...
0
votes
1answer
29 views

can't render in ejs template of node.js

I met a wield problem in node.js ejs template. Here is the express code. app.get('/course',function(req,res){ var locals = {}; locals.course = { title: 'data.title', ...
0
votes
2answers
36 views

how to change the ejs template in node.js to avoid this situation

I am using the ejs template in the node.js, and I have troubles with routes, so for example I have two html files, home.html and list.html, which both load a list.ejs file in order to show the same ...
0
votes
0answers
23 views

rendering ejs templates in python

I used ejs templating system but I need to render them before page load due to SEO with Python. I am using tornado as web server. Is there an easy way to render ejs templates via Python?
0
votes
0answers
66 views

node.js get request params getting stylesheet

I have a method in my app called getJson. It takes in the params from the url (dept and num) and makes an api call. But this is being called twice and the second time is being called with ...
1
vote
1answer
107 views

Jade And EJS For Node

Is there a way I can use ejs and jade(I like both EJS and Jade and cannot decide which to use): div <% for(var i = 0; i<things.length; i++){ %> <% = things[i] %> ...
0
votes
2answers
60 views

EJS and DUST - side by side

I am using node.js with express and ejs. I should move my site from ejs to another template engine - dust.js. I want to be able to move the templates from one template engine to another one by one. ...
0
votes
0answers
102 views

Coffeescript & ejs how to add html every x items from array

Im using nodeJs.. I have the following javascript.. to iterate over an array of projects from my database. i was doing this server side, that way the data was pre sorted and when using handlebars all ...
0
votes
1answer
124 views

Add a value to the option

I am trying to create a select element using EJS (embedded javascript) in Geddy framework. What I want to do is have something like (just an example): <select> <option value="int"> ...
0
votes
0answers
205 views

layout.ejs not rendered - Node.js, Express

I am trying to execute a simple example of node.js with EJS templates. Node, or rather express is unable to render the index page, as in the following code, with layout.ejs, no matter what I do. ...
1
vote
1answer
48 views

How to automatically refresh ejs page

Im new with ejs. As I was trying out an app. I want to refresh the page every 5 sec. I got a code <script language="javascript" type="text/javascript"> $(document).ready(function() { ...
0
votes
1answer
60 views

ejs template function inside function

Is there a way for ejs template to call a function inside another function? For example I am trying to do like this: <% function graph(graph) { %> <a href="<%= graph.href ...
0
votes
0answers
30 views

Can't dup TrueClass when precompiling ejs assets in JRuby

When running rake assets:precompile in JRuby I'm getting the following backtrace: can't dup TrueClass (in C:/tripwire/app/assets/templates/alert_histories/index.jst.ejs.slim) ...
1
vote
1answer
155 views

EJS module not found on OpenShift NodeJS template

I am unable to use EJS as my view render engine on NodeJS. I have found several similar questions but all state about installing EJS that really work for others. This is not same for me, may be ...
0
votes
1answer
124 views

How can I pass variable to ejs.compile

My bottom_index.ejs looks like that: <div>The bottom section</div> In my code I declare ejs: ejs = require('ejs'); Then compile the function: var botom_index_ejs = ...
0
votes
0answers
311 views

Express & EJS - layout.ejs not used

Im trying out EJS as a view engine with Express. It seems that my layout.ejs is not used. I have two views index.ejs and layout.ejs both in my 'views' folder. It seems that index.js is rendered but ...
2
votes
1answer
115 views

How to use EJS templates in a Backbone project generated by Yeoman?

Using yeoman init backbone:all generates the required files for a sample Backbone.JS app. Along with the MVC files for a sample application object, it also creates a folder at ...
0
votes
1answer
72 views

How do I use ejs templates in conjunction with underscore?

In underscore, <%- stuff %> escapes HTML. However, in EJS, <%= stuff %> escapes HTML. If there was a way to make this consistent, life would be great.
0
votes
1answer
88 views

CanJS EJS table - rows appearing above the table

I am new to CanJS and was trying to learn via tutorials.. Once place where I got stuck was when I converted the todo tutorial code to use table instead of UL/LI combination. May be I am making some ...
0
votes
2answers
100 views

How to reference layout images in express.js so that they can be found from nested directories?

I've got an express.js app currently using ejs (using jade for newer projects) and I'm trying to solve a problem in a clean and appropriate manner. I've got a layout.ejs file with my header and ...
0
votes
1answer
99 views

Accessing server side functions using Express.js and EJS

I'm running a test app in Express.js using EJS as the templating engine. I'd like to access functions stored in a .js file to run server side and not client side. For instance if I have: <%= ...
0
votes
0answers
37 views

Internal error including a EJS template in Express 2.5

I have a node.js app that uses EJS as template engine and ExpressJS 2.5.8 I try to include a partial inside a ejs page in this way: <%- partial('list') %> I get a "500 Internal Error" . I've ...
0
votes
1answer
99 views

NodeJS concurrently/asynchronously generating views for performance

I'm new to NodeJS, and I'm attracted to the performance benefits of asynchronously and concurrently performing IO operations so that the total request time is closer to the time required to perform ...
1
vote
2answers
249 views

Passing arguments from node.js to knockout.js through ejs

I have a node.js that consumes mongodb data and outputs lists using knockout.js When i invoke the view i pass a json structure using res.render('list', { items:json }); In the list.ejs template ...
0
votes
2answers
186 views

What is the most reliable and popular Node.js templating engine? [closed]

Node noobie questions I hope someone wise can help answer: 1) What is the most reliable and popular Node.js templating engine? I'm using Express and I'm thinking of either Jade or EJS(Embedded ...

1 2 3 4 5