-->

  • Loop in ejs embedded javascript template

     

    Loop in ejs embedded javascript template
     

     

    Loop in ejs embedded javascript template

     

    Hello viewers, whats up!! Here i am back again with the new series of  Nodejs. Node.js is an open-source, cross-platform JavaScript runtime environment that allows developers to run JavaScript code outside of a web browser. It is built on the V8 JavaScript runtime engine, which is the same engine that powers the Google Chrome browser. 

    Node.js is commonly used for building APIs (Application Programming Interfaces). You can create RESTful APIs or GraphQL APIs using Node.js to handle HTTP requests and serve data to client applications.

     

    Key features of Node.js include:

     

    # Asynchronous - Node.js is designed to be asynchronous, meaning it can handle a large number of concurrent connections without the need for multithreading.

    # Single-threaded, Non-blocking I/O - Node.js uses a single-threaded event loop to manage asynchronous operations.

    # npm (Node Package Manager): npm is the default package manager for Node.js, allowing developers to easily manage and install libraries and dependencies for their projects.

    # Server-Side Development: Node.js is commonly used for server-side development, where it excels at handling real-time, data-intensive applications, such as chat applications, online gaming, and streaming services.

     

    But Why we are using Expressjs , just because of incase if you want to make API using nodejs directly then its a very complex method to create API and integrate directly thats why we are using Expressjs framework and in this framework with the help, you can create RESTful API easily.




    Why we need of EJS ?


    Here we gonna discuss about ejs template because of you are all aware about our previous blog where we have to written static page name where we don't need to implement database and in static page for not possible but for this template you can Database connectivity with dynamic page.

     

     

     How to Make loop in EJS?

     

    First we will make object in index.js (we have already told you please check continuously visit our blog. 

     

    app.get('/profile',(__,resp) => {
        const user = {
            name: 'atul',
            email: 'kumaratuljaiswal222@gmail.com',
            city: 'hyderabad',
    
            skills: ['php', 'js', 'reactjs', 'nodejs']
        }
      resp.render('profile', {user});
       
    })
    

     

     

    Here, we will consider app.get method and inside this method set as name whatever you want to set to parameter for url ('/profile). Then ( __, resp ) this line goes to define first parameter as a req or __ space after that response as a resp parameter. 

    After that written a const user object with property and last line goes to resp.render with rendering profile.ejs page and object name.

     

     

    Whole Code (index.js)

     

     

    const express = require('express')
    const path = require('path')
    
    const app = express();
    
    const publicPath = path.join(__dirname, 'public');
    
    
    app.set('view engine', 'ejs');
    
    
    app.get('/profile',(__,resp) => {
        const user = {
            name: 'atul',
            email: 'kumaratuljaiswal222@gmail.com',
            city: 'hyderabad',
    
            skills: ['php', 'js', 'reactjs', 'nodejs']
        }
      resp.render('profile', {user});
       
    })
    
    
    app.listen(5000)
    
    

     

     

     

    Make loop in Profile page

     

     

    <!DOCTYPE html>
    <html lang="en">
    <head>
         <title>Profile Page (EJS)</title>
    </head>
    <body>
    
        <h1>Welcome <%= user.name %></h1>
        <!-- <h1>EmailID <%= user.email %></h1>
        <h1>City <%= user.city %></h1>
         -->
        
         <% user.skills.forEach((item) => { %>
         <li><%= item %></li>
       <% }) %>
        
    </body>
    </html>
    

     

     

     

    Loop in ejs embedded javascript template

     


     

     

     

     


    # Install redux and saga packages - CLICK HERE

    # Make reducer wrapper - CLICK HERE

    # Action in reducer - CLICK HERE

    # Reducer in redux - CLICK HERE

    # Switch Stmt in redux - CLICK HERE

    # Get data in component from redux - CLICK HERE 

    # Remove from cart - CLICK HERE 

    # Add Redux Toolkit in react redux saga - CLICK HERE  

    # Configure MiddleWare saga - CLICK HERE   

    # Call API with Saga and Set Result in react redux saga - CLICK HERE    

    # Product list ui with API data in react redux saga - CLICK HERE    

    # Remove to Cart with ID react redux saga - CLICK HERE     

    # Add Routing and Make Cart Page - CLICK HERE   

    # Show Added To Cart Product with Price Calculation  - CLICK HERE  

     

    Disclaimer



    All tutorials are for informational and educational purposes only and have been made using our own routers, servers, websites and other vulnerable free resources. we do not contain any illegal activity. We believe that ethical hacking, information security and cyber security should be familiar subjects to anyone using digital information and computers. Hacking Truth is against misuse of the information and we strongly suggest against it. Please regard the word hacking as ethical hacking or penetration testing every time this word is used. We do not promote, encourage, support or excite any illegal activity or hacking.

     



     

  • 0 comments:

    Post a Comment

    For Any Tech Updates, Hacking News, Internet, Computer, Technology and related to IT Field Articles Follow Our Blog.