Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7029149
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T00:30:01+00:00 2026-05-28T00:30:01+00:00

I am using express (web framework for node.js) with ejs. Now I’d like to

  • 0

I am using express (web framework for node.js) with ejs. Now I’d like to create my own filter as described on the ejs github page:

To add a filter simply add a method to the .filters object:

ejs.filters.last = function(obj) {
  return obj[obj.length - 1];
};

The question: how do I access that ejs object? I have tried (naively) in app.js:

ejs.filters.myfilter = function (obj) {
  ....
}

which gives me the error:

ReferenceError: ejs is not defined
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-28T00:30:02+00:00Added an answer on May 28, 2026 at 12:30 am

    You need to require ejs in your application and set a custom filter on it, which will be visible for your Express application. Also note how you use a ejs filter in your view <%=: data_to_be_filtered | your_filter %>.

    Example application:

    app.js

    var app, express = require('express'), ejs = require('ejs');
    
    ejs.filters.my_custom_filter = function(ary) {
      return ary[ary.length - 1];
    };
    
    app = express.createServer();
    
    app.configure(function() {
      app.set('view options', { layout: false });
      app.set('view engine', 'ejs');
    });
    
    app.get('/', function(req, res) {
      res.render('index', { data: [1, 2, 3, 4, 5] });
    });
    
    app.listen(8080);
    console.log('Server started on port 8080');
    

    index.ejs (located in /views)

    <%=: data | my_custom_filter %>
    

    Download the code directly from github: http://github.com/alessioalex/ejs_filters

    Fore more information checkout: https://github.com/visionmedia/ejs

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm using Node.JS and Express web framework, I have a problem with the res.render()
I'm using Node.JS and Express web framework, I need to work with Sessions. I
I have been using IIS express as my web server for awhile now, but
I am working in Visual Web Developer 2010 Express, and using the Entity Framework
I'm successfully using Paypal Express Checkout in a marketplace web app passing for every
I am using Microsoft Visual Web Developer 2008 Express. I've made an ASP.NET MVC
I created a new ASP.NET website using Visual Web Developer 2008 Express edition and
I'm currently working on a small web application using Visual Studio 2008 Express. I'm
Hi all I've just started a new project using Visual Web Developer 2008 Express
I tried to create a OData web service using VS 2008 without any luck.

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.