Wednesday, July 3, 2024
HomeLanguagesJavascriptHow to use Ejs in JavaScript ?

How to use Ejs in JavaScript ?

EJS or Embedded Javascript Templating is a templating engine used by Node.js. The template engine helps to create an HTML template with minimal code. Also, it can inject data into the HTML template at the client-side and produce the final HTML.

Installation: Install module using the following command:

npm install ejs --save        

Note: The npm in the above commands stands for the node package manager, a place where install all the dependencies. –save flag is no longer needed after Node 5.0.0 version, as all the modules that we now install will be added to dependencies.

Now, the first thing we need to do is to set EJS as our templating engine with Express which is a Node.js web application server framework, which is specifically designed for building a single-page, multi-page, and hybrid web applications. It has become the standard server framework for node.js.

Data passed from the server is sent to the EJS file and then we can access that data using the below line and it will give that data to h, p, or another text tag.

<%= data %>

If we want to use this data for normal js operations like if-else and loops or other programming statements we can write it in the following form:

<% if(data == "1"){%>
<h5>Cricket</h5>
<%}else{%>
<h5>Football</h5>
<%}%>

Now to access that data in the script tag of EJS file or the .js file all you need to do is to pass that data in another variable as below:

let data = '<%-data%>'

Now you can perform any operation on the data variable which has the same value as EJS passed data variable.

Filename: index.js




// Set express as Node.js web application 
// server framework. 
  
// Install it using 'npm install express' command 
// and require like this:
var express = require('express'); 
var app = express(); 
    
// Set EJS as templating engine 
app.set('view engine', 'ejs'); 
  
app.get("/", function(req, res) {  
  res.render("home", {name:'Chris Martin'});
});
    
// Server setup
app.listen(3000, function(req, res) {
  console.log("Connected on port:3000");
});


The default behavior of EJS is that it looks into the ‘views’ folder for the templates to render. So, let’s make a ‘views’ folder in our main node project folder and make a file named “home.ejs” which is to be served on some desired request in our node project.

Filename: home.ejs




<!DOCTYPE html>
<html lang="en">
  
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content=
        "width=device-width, 
        initial-scale=1.0">
</head>
  
<body>
    <center>
  
        <!-- Text from EJS variable 
            passed from server -->
        <h2>
            Text from EJS variable passed 
            from server is = 
        </h2>
        <h2 style="color:red"><%=name%></h2>
        <br>
  
        <!-- Text from EJS variable 
            passed from script tag -->
        <h2 style="color: blue;">
            Text from EJS variable passed 
            from script tag =
        </h2>
        <h2 style="color: blue;" 
            id="text_from_script">
        </h2>
        <br>
  
        <!-- Text from EJS variable passed 
            from script tag after manipulation -->
        <h2 style="color: green;">
            Text from EJS variable passed from 
            script tag after manipulation =
        </h2>
        <h2 style="color: green;" 
            id="text_from_script_manipulated">
        </h2>
    </center>
  
    <script>
        let name = '<%-name%>'
        let heading = document
            .getElementById('text_from_script');
  
        heading.innerText = name;
        name = "Mr. " + name;
        let heading_man = document.getElementById(
                'text_from_script_manipulated');
        heading_man.innerText = name;
    </script>
</body>
  
</html>


Name variable has been passed from server to name.ejs file and showed using h2 tag, to use the name variable in the script tag all we did is declare a variable and pass the EJS variable to declared variable using:

let name = '<%-name%>'

Steps to run the program:

  • After creating all the files go to the root directory of your project folder.
  • Run command prompt in this directory.
  • Type the following command to run your program and see the output as displayed.
    node index.js

Output:

Shaida Kate Naidoo
am passionate about learning the latest technologies available to developers in either a Front End or Back End capacity. I enjoy creating applications that are well designed and responsive, in addition to being user friendly. I thrive in fast paced environments. With a diverse educational and work experience background, I excel at collaborating with teams both local and international. A versatile developer with interests in Software Development and Software Engineering. I consider myself to be adaptable and a self motivated learner. I am interested in new programming technologies, and continuous self improvement.
RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Most Popular

Recent Comments