ºÝºÝߣ

ºÝºÝߣShare a Scribd company logo
Session II
?Techforce Infotech Pvt Ltd 2017-18
Environment Setup
? Text Editor
? Latest Browser
? Basic Knowledge of Command Prompt
Prerequisite
Environment Setup
? Go to the Node.js official website https://nodejs.org/en/
Environment Setup
? Run downloaded .msi file
Environment Setup
? Set nodejs path in environment variable.
Environment Setup
? Now open CMD and type ¡°npm ¨Cv¡± or ¡°node -v¡±
Sample Application
? Print ¡®Hello World!¡¯ using Node.js .
Console.log(¡®Hello World!¡¯);
app.js
Output- Hello World!
? Module :- Module in Node.js is a simple or complex functionality
organized in single or multiple JavaScript files which can be
reused throughout the Node.js application.
? Each module in Node.js has its own context, so it cannot
interfere with other modules or pollute global scope. Also, each
module can be placed in a separate .js file under a separate
folder.
Modules in Node.js
Types of Modules
? Core Modules : - These core modules are compiled into its binary
distribution and load automatically when Node.js process starts. Core
modules is predefined.
? http : - http module includes classes, methods and events to create Node.js
http server.
? url :- url module includes methods for URL resolution and parsing.
? querystring :- querystring module includes methods to deal with query string.
? path :- path module includes methods to deal with file paths.
? fs :- fs module includes classes, methods, and events to work with file I/O.
? util :-util module includes utility functions useful for programmers.
? Loading Core Modules :- In order to use Node.js core or NPM modules, you first
need to import it using require() function as shown below.
var module = require(¡°module_name¡±);
Types of Modules
? Local Modules : - Local modules are modules created locally in your
Node.js application.
? These modules include different functionalities of your application in separate
files and folders. You can also package it and distribute it via NPM
? This module is user defined.
log.js =====>
var log = {
info: function (info) {
console.log ('Info: ' +
info);
},
};
module.exports = log
Note: - module.exports -> whatever you assign to module.exports or exports, will
be exposed as a module.
? NPM :- Node Package Manager (NPM) is a command line
tool that installs, updates or uninstalls Node.js packages
in your application. It is also an online repository for open-
source Node.js packages. The node community around the
world creates useful modules and publishes them as
packages in this repository.
? Install Package locally - > npm install <package_name>
? Install Package globally - > npm install <package_name> -
g
? Update Package - > npm update <package_name>
? Uninstall Package - > npm uninstall <package_name>
Node Package Manager (NPM)
Session II
completed
Thank You
Session II
completed
Address: 403, Venus Benecia, Bodakdev,Ahmedabad ¨C
380053
Reach us : reach@techforceinfotech.com
Contact no: +91 (79) 48904529

More Related Content

What's hot (20)

NodeJs Session03
NodeJs Session03NodeJs Session03
NodeJs Session03
Jainul Musani
?
Nodejs Session01
Nodejs Session01Nodejs Session01
Nodejs Session01
Jainul Musani
?
PLNOG16: Automatyzacja tworzenia sieci w ?rodowisku Vmware, Maciej Lelusz
PLNOG16:  Automatyzacja tworzenia sieci w ?rodowisku Vmware, Maciej LeluszPLNOG16:  Automatyzacja tworzenia sieci w ?rodowisku Vmware, Maciej Lelusz
PLNOG16: Automatyzacja tworzenia sieci w ?rodowisku Vmware, Maciej Lelusz
PROIDEA
?
Meteor Meets Mallory
Meteor Meets MalloryMeteor Meets Mallory
Meteor Meets Mallory
Emily Stark
?
Solaris mysql sop
Solaris mysql sopSolaris mysql sop
Solaris mysql sop
Uday Prabhala
?
virtualization course content
virtualization course contentvirtualization course content
virtualization course content
sadikshya sharma
?
Redis fundamental
Redis fundamentalRedis fundamental
Redis fundamental
Yuhao Zhang
?
Codemash - Building Custom node.js Modules
Codemash - Building Custom node.js ModulesCodemash - Building Custom node.js Modules
Codemash - Building Custom node.js Modules
Kevin Griffin
?
Node jsʵ¼ù
Node jsʵ¼ùNode jsʵ¼ù
Node jsʵ¼ù
jay li
?
An Introduction to Node.js Development with Windows Azure
An Introduction to Node.js Development with Windows AzureAn Introduction to Node.js Development with Windows Azure
An Introduction to Node.js Development with Windows Azure
Troy Miles
?
Open wrt seminar
Open wrt seminarOpen wrt seminar
Open wrt seminar
Muhammad Pailus
?
Cookies in Angular | Install CookiesService
Cookies in Angular | Install CookiesServiceCookies in Angular | Install CookiesService
Cookies in Angular | Install CookiesService
Pradeep Kumar
?
MySQL and SSD
MySQL and SSDMySQL and SSD
MySQL and SSD
Gea-Suan Lin
?
Dprn3 u3 a1_ocov
Dprn3 u3 a1_ocovDprn3 u3 a1_ocov
Dprn3 u3 a1_ocov
Nicolay Stojakovic
?
3. hd insight on windows azure
3. hd insight on windows azure3. hd insight on windows azure
3. hd insight on windows azure
Richard Conway
?
My sql
My sqlMy sql
My sql
Shashwat Shriparv
?
ASP.NET-Web Programming - Sessions and Cookies
ASP.NET-Web Programming - Sessions and CookiesASP.NET-Web Programming - Sessions and Cookies
ASP.NET-Web Programming - Sessions and Cookies
baabtra.com - No. 1 supplier of quality freshers
?
Node.js Introduction
Node.js IntroductionNode.js Introduction
Node.js Introduction
Kentucky JavaScript Users Group
?
Sql installation
Sql installationSql installation
Sql installation
Balakumaran Arunachalam
?

Similar to Node Session - 2 (20)

Node js Powerpoint Presentation by PDEU Gandhinagar
Node js Powerpoint Presentation by PDEU GandhinagarNode js Powerpoint Presentation by PDEU Gandhinagar
Node js Powerpoint Presentation by PDEU Gandhinagar
tirthuce22
?
node.js.pptx
node.js.pptxnode.js.pptx
node.js.pptx
rani marri
?
Nodejs getting started
Nodejs getting startedNodejs getting started
Nodejs getting started
Triet Ho
?
Intro to Node.js (v1)
Intro to Node.js (v1)Intro to Node.js (v1)
Intro to Node.js (v1)
Chris Cowan
?
Node.js
Node.jsNode.js
Node.js
krishnapriya Tadepalli
?
unit 2 of Full stack web development subject
unit 2 of Full stack web development subjectunit 2 of Full stack web development subject
unit 2 of Full stack web development subject
JeneferAlan1
?
Introduction to node.js By Ahmed Assaf
Introduction to node.js  By Ahmed AssafIntroduction to node.js  By Ahmed Assaf
Introduction to node.js By Ahmed Assaf
Ahmed Assaf
?
Node.js essentials
 Node.js essentials Node.js essentials
Node.js essentials
Bedis ElAch¨¨che
?
Nodejs vatsal shah
Nodejs vatsal shahNodejs vatsal shah
Nodejs vatsal shah
Vatsal N Shah
?
Getting Started with Node.js
Getting Started with Node.jsGetting Started with Node.js
Getting Started with Node.js
Justin Reock
?
Node.js Chapter1
Node.js Chapter1Node.js Chapter1
Node.js Chapter1
Talentica Software
?
Node js meetup
Node js meetupNode js meetup
Node js meetup
Ansuman Roy
?
Basic Concept of Node.js & NPM
Basic Concept of Node.js & NPMBasic Concept of Node.js & NPM
Basic Concept of Node.js & NPM
Bhargav Anadkat
?
Day In A Life Of A Node.js Developer
Day In A Life Of A Node.js DeveloperDay In A Life Of A Node.js Developer
Day In A Life Of A Node.js Developer
Edureka!
?
Day in a life of a node.js developer
Day in a life of a node.js developerDay in a life of a node.js developer
Day in a life of a node.js developer
Edureka!
?
A complete guide to Node.js
A complete guide to Node.jsA complete guide to Node.js
A complete guide to Node.js
Prabin Silwal
?
Mastering node.js, part 1 - introduction
Mastering node.js, part 1 - introductionMastering node.js, part 1 - introduction
Mastering node.js, part 1 - introduction
cNguyn826690
?
Overview of Node JS
Overview of Node JSOverview of Node JS
Overview of Node JS
Jacob Nelson
?
Intro To Node.js
Intro To Node.jsIntro To Node.js
Intro To Node.js
Chris Cowan
?
U4-01-Node JS.pptxweasrdtfyhg[]"Piuytrhedfyguhijokpl
U4-01-Node JS.pptxweasrdtfyhg[]"PiuytrhedfyguhijokplU4-01-Node JS.pptxweasrdtfyhg[]"Piuytrhedfyguhijokpl
U4-01-Node JS.pptxweasrdtfyhg[]"Piuytrhedfyguhijokpl
vinodkumarthatipamul
?
Node js Powerpoint Presentation by PDEU Gandhinagar
Node js Powerpoint Presentation by PDEU GandhinagarNode js Powerpoint Presentation by PDEU Gandhinagar
Node js Powerpoint Presentation by PDEU Gandhinagar
tirthuce22
?
Nodejs getting started
Nodejs getting startedNodejs getting started
Nodejs getting started
Triet Ho
?
Intro to Node.js (v1)
Intro to Node.js (v1)Intro to Node.js (v1)
Intro to Node.js (v1)
Chris Cowan
?
unit 2 of Full stack web development subject
unit 2 of Full stack web development subjectunit 2 of Full stack web development subject
unit 2 of Full stack web development subject
JeneferAlan1
?
Introduction to node.js By Ahmed Assaf
Introduction to node.js  By Ahmed AssafIntroduction to node.js  By Ahmed Assaf
Introduction to node.js By Ahmed Assaf
Ahmed Assaf
?
Getting Started with Node.js
Getting Started with Node.jsGetting Started with Node.js
Getting Started with Node.js
Justin Reock
?
Basic Concept of Node.js & NPM
Basic Concept of Node.js & NPMBasic Concept of Node.js & NPM
Basic Concept of Node.js & NPM
Bhargav Anadkat
?
Day In A Life Of A Node.js Developer
Day In A Life Of A Node.js DeveloperDay In A Life Of A Node.js Developer
Day In A Life Of A Node.js Developer
Edureka!
?
Day in a life of a node.js developer
Day in a life of a node.js developerDay in a life of a node.js developer
Day in a life of a node.js developer
Edureka!
?
A complete guide to Node.js
A complete guide to Node.jsA complete guide to Node.js
A complete guide to Node.js
Prabin Silwal
?
Mastering node.js, part 1 - introduction
Mastering node.js, part 1 - introductionMastering node.js, part 1 - introduction
Mastering node.js, part 1 - introduction
cNguyn826690
?
U4-01-Node JS.pptxweasrdtfyhg[]"Piuytrhedfyguhijokpl
U4-01-Node JS.pptxweasrdtfyhg[]"PiuytrhedfyguhijokplU4-01-Node JS.pptxweasrdtfyhg[]"Piuytrhedfyguhijokpl
U4-01-Node JS.pptxweasrdtfyhg[]"Piuytrhedfyguhijokpl
vinodkumarthatipamul
?
Ad

Recently uploaded (20)

Domino IQ ¨C What to Expect, First Steps and Use Cases
Domino IQ ¨C What to Expect, First Steps and Use CasesDomino IQ ¨C What to Expect, First Steps and Use Cases
Domino IQ ¨C What to Expect, First Steps and Use Cases
panagenda
?
DevOps in the Modern Era - Thoughtfully Critical Podcast
DevOps in the Modern Era - Thoughtfully Critical PodcastDevOps in the Modern Era - Thoughtfully Critical Podcast
DevOps in the Modern Era - Thoughtfully Critical Podcast
Chris Wahl
?
IntroºÝºÝߣs-May-BuildWithAi-EarthEngine.pdf
IntroºÝºÝߣs-May-BuildWithAi-EarthEngine.pdfIntroºÝºÝߣs-May-BuildWithAi-EarthEngine.pdf
IntroºÝºÝߣs-May-BuildWithAi-EarthEngine.pdf
Luiz Carneiro
?
ISOIEC 42005 Revolutionalises AI Impact Assessment.pptx
ISOIEC 42005 Revolutionalises AI Impact Assessment.pptxISOIEC 42005 Revolutionalises AI Impact Assessment.pptx
ISOIEC 42005 Revolutionalises AI Impact Assessment.pptx
AyilurRamnath1
?
Mark Zuckerberg teams up with frenemy Palmer Luckey to shape the future of XR...
Mark Zuckerberg teams up with frenemy Palmer Luckey to shape the future of XR...Mark Zuckerberg teams up with frenemy Palmer Luckey to shape the future of XR...
Mark Zuckerberg teams up with frenemy Palmer Luckey to shape the future of XR...
Scott M. Graffius
?
How to Detect Outliers in IBM SPSS Statistics.pptx
How to Detect Outliers in IBM SPSS Statistics.pptxHow to Detect Outliers in IBM SPSS Statistics.pptx
How to Detect Outliers in IBM SPSS Statistics.pptx
Version 1 Analytics
?
Co-Constructing Explanations for AI Systems using Provenance
Co-Constructing Explanations for AI Systems using ProvenanceCo-Constructing Explanations for AI Systems using Provenance
Co-Constructing Explanations for AI Systems using Provenance
Paul Groth
?
Data Virtualization: Bringing the Power of FME to Any Application
Data Virtualization: Bringing the Power of FME to Any ApplicationData Virtualization: Bringing the Power of FME to Any Application
Data Virtualization: Bringing the Power of FME to Any Application
Safe Software
?
Jeremy Millul - A Talented Software Developer
Jeremy Millul - A Talented Software DeveloperJeremy Millul - A Talented Software Developer
Jeremy Millul - A Talented Software Developer
Jeremy Millul
?
soulmaite review - Find Real AI soulmate review
soulmaite review - Find Real AI soulmate reviewsoulmaite review - Find Real AI soulmate review
soulmaite review - Find Real AI soulmate review
Soulmaite
?
Cybersecurity Fundamentals: Apprentice - Palo Alto Certificate
Cybersecurity Fundamentals: Apprentice - Palo Alto CertificateCybersecurity Fundamentals: Apprentice - Palo Alto Certificate
Cybersecurity Fundamentals: Apprentice - Palo Alto Certificate
VICTOR MAESTRE RAMIREZ
?
Your startup on AWS - How to architect and maintain a Lean and Mean account
Your startup on AWS - How to architect and maintain a Lean and Mean accountYour startup on AWS - How to architect and maintain a Lean and Mean account
Your startup on AWS - How to architect and maintain a Lean and Mean account
angelo60207
?
7 Salesforce Data Cloud Best Practices.pdf
7 Salesforce Data Cloud Best Practices.pdf7 Salesforce Data Cloud Best Practices.pdf
7 Salesforce Data Cloud Best Practices.pdf
Minuscule Technologies
?
Oracle Cloud Infrastructure AI Foundations
Oracle Cloud Infrastructure AI FoundationsOracle Cloud Infrastructure AI Foundations
Oracle Cloud Infrastructure AI Foundations
VICTOR MAESTRE RAMIREZ
?
Dancing with AI - A Developer's Journey.pptx
Dancing with AI - A Developer's Journey.pptxDancing with AI - A Developer's Journey.pptx
Dancing with AI - A Developer's Journey.pptx
Elliott Richmond
?
How Advanced Environmental Detection Is Revolutionizing Oil & Gas Safety.pdf
How Advanced Environmental Detection Is Revolutionizing Oil & Gas Safety.pdfHow Advanced Environmental Detection Is Revolutionizing Oil & Gas Safety.pdf
How Advanced Environmental Detection Is Revolutionizing Oil & Gas Safety.pdf
Rejig Digital
?
If You Use Databricks, You Definitely Need FME
If You Use Databricks, You Definitely Need FMEIf You Use Databricks, You Definitely Need FME
If You Use Databricks, You Definitely Need FME
Safe Software
?
AI Creative Generates You Passive Income Like Never Before
AI Creative Generates You Passive Income Like Never BeforeAI Creative Generates You Passive Income Like Never Before
AI Creative Generates You Passive Income Like Never Before
SivaRajan47
?
Establish Visibility and Manage Risk in the Supply Chain with Anchore SBOM
Establish Visibility and Manage Risk in the Supply Chain with Anchore SBOMEstablish Visibility and Manage Risk in the Supply Chain with Anchore SBOM
Establish Visibility and Manage Risk in the Supply Chain with Anchore SBOM
Anchore
?
6th Power Grid Model Meetup - 21 May 2025
6th Power Grid Model Meetup - 21 May 20256th Power Grid Model Meetup - 21 May 2025
6th Power Grid Model Meetup - 21 May 2025
DanBrown980551
?
Domino IQ ¨C What to Expect, First Steps and Use Cases
Domino IQ ¨C What to Expect, First Steps and Use CasesDomino IQ ¨C What to Expect, First Steps and Use Cases
Domino IQ ¨C What to Expect, First Steps and Use Cases
panagenda
?
DevOps in the Modern Era - Thoughtfully Critical Podcast
DevOps in the Modern Era - Thoughtfully Critical PodcastDevOps in the Modern Era - Thoughtfully Critical Podcast
DevOps in the Modern Era - Thoughtfully Critical Podcast
Chris Wahl
?
IntroºÝºÝߣs-May-BuildWithAi-EarthEngine.pdf
IntroºÝºÝߣs-May-BuildWithAi-EarthEngine.pdfIntroºÝºÝߣs-May-BuildWithAi-EarthEngine.pdf
IntroºÝºÝߣs-May-BuildWithAi-EarthEngine.pdf
Luiz Carneiro
?
ISOIEC 42005 Revolutionalises AI Impact Assessment.pptx
ISOIEC 42005 Revolutionalises AI Impact Assessment.pptxISOIEC 42005 Revolutionalises AI Impact Assessment.pptx
ISOIEC 42005 Revolutionalises AI Impact Assessment.pptx
AyilurRamnath1
?
Mark Zuckerberg teams up with frenemy Palmer Luckey to shape the future of XR...
Mark Zuckerberg teams up with frenemy Palmer Luckey to shape the future of XR...Mark Zuckerberg teams up with frenemy Palmer Luckey to shape the future of XR...
Mark Zuckerberg teams up with frenemy Palmer Luckey to shape the future of XR...
Scott M. Graffius
?
How to Detect Outliers in IBM SPSS Statistics.pptx
How to Detect Outliers in IBM SPSS Statistics.pptxHow to Detect Outliers in IBM SPSS Statistics.pptx
How to Detect Outliers in IBM SPSS Statistics.pptx
Version 1 Analytics
?
Co-Constructing Explanations for AI Systems using Provenance
Co-Constructing Explanations for AI Systems using ProvenanceCo-Constructing Explanations for AI Systems using Provenance
Co-Constructing Explanations for AI Systems using Provenance
Paul Groth
?
Data Virtualization: Bringing the Power of FME to Any Application
Data Virtualization: Bringing the Power of FME to Any ApplicationData Virtualization: Bringing the Power of FME to Any Application
Data Virtualization: Bringing the Power of FME to Any Application
Safe Software
?
Jeremy Millul - A Talented Software Developer
Jeremy Millul - A Talented Software DeveloperJeremy Millul - A Talented Software Developer
Jeremy Millul - A Talented Software Developer
Jeremy Millul
?
soulmaite review - Find Real AI soulmate review
soulmaite review - Find Real AI soulmate reviewsoulmaite review - Find Real AI soulmate review
soulmaite review - Find Real AI soulmate review
Soulmaite
?
Cybersecurity Fundamentals: Apprentice - Palo Alto Certificate
Cybersecurity Fundamentals: Apprentice - Palo Alto CertificateCybersecurity Fundamentals: Apprentice - Palo Alto Certificate
Cybersecurity Fundamentals: Apprentice - Palo Alto Certificate
VICTOR MAESTRE RAMIREZ
?
Your startup on AWS - How to architect and maintain a Lean and Mean account
Your startup on AWS - How to architect and maintain a Lean and Mean accountYour startup on AWS - How to architect and maintain a Lean and Mean account
Your startup on AWS - How to architect and maintain a Lean and Mean account
angelo60207
?
7 Salesforce Data Cloud Best Practices.pdf
7 Salesforce Data Cloud Best Practices.pdf7 Salesforce Data Cloud Best Practices.pdf
7 Salesforce Data Cloud Best Practices.pdf
Minuscule Technologies
?
Oracle Cloud Infrastructure AI Foundations
Oracle Cloud Infrastructure AI FoundationsOracle Cloud Infrastructure AI Foundations
Oracle Cloud Infrastructure AI Foundations
VICTOR MAESTRE RAMIREZ
?
Dancing with AI - A Developer's Journey.pptx
Dancing with AI - A Developer's Journey.pptxDancing with AI - A Developer's Journey.pptx
Dancing with AI - A Developer's Journey.pptx
Elliott Richmond
?
How Advanced Environmental Detection Is Revolutionizing Oil & Gas Safety.pdf
How Advanced Environmental Detection Is Revolutionizing Oil & Gas Safety.pdfHow Advanced Environmental Detection Is Revolutionizing Oil & Gas Safety.pdf
How Advanced Environmental Detection Is Revolutionizing Oil & Gas Safety.pdf
Rejig Digital
?
If You Use Databricks, You Definitely Need FME
If You Use Databricks, You Definitely Need FMEIf You Use Databricks, You Definitely Need FME
If You Use Databricks, You Definitely Need FME
Safe Software
?
AI Creative Generates You Passive Income Like Never Before
AI Creative Generates You Passive Income Like Never BeforeAI Creative Generates You Passive Income Like Never Before
AI Creative Generates You Passive Income Like Never Before
SivaRajan47
?
Establish Visibility and Manage Risk in the Supply Chain with Anchore SBOM
Establish Visibility and Manage Risk in the Supply Chain with Anchore SBOMEstablish Visibility and Manage Risk in the Supply Chain with Anchore SBOM
Establish Visibility and Manage Risk in the Supply Chain with Anchore SBOM
Anchore
?
6th Power Grid Model Meetup - 21 May 2025
6th Power Grid Model Meetup - 21 May 20256th Power Grid Model Meetup - 21 May 2025
6th Power Grid Model Meetup - 21 May 2025
DanBrown980551
?
Ad

Node Session - 2

  • 2. Environment Setup ? Text Editor ? Latest Browser ? Basic Knowledge of Command Prompt Prerequisite
  • 3. Environment Setup ? Go to the Node.js official website https://nodejs.org/en/
  • 4. Environment Setup ? Run downloaded .msi file
  • 5. Environment Setup ? Set nodejs path in environment variable.
  • 6. Environment Setup ? Now open CMD and type ¡°npm ¨Cv¡± or ¡°node -v¡±
  • 7. Sample Application ? Print ¡®Hello World!¡¯ using Node.js . Console.log(¡®Hello World!¡¯); app.js Output- Hello World!
  • 8. ? Module :- Module in Node.js is a simple or complex functionality organized in single or multiple JavaScript files which can be reused throughout the Node.js application. ? Each module in Node.js has its own context, so it cannot interfere with other modules or pollute global scope. Also, each module can be placed in a separate .js file under a separate folder. Modules in Node.js
  • 9. Types of Modules ? Core Modules : - These core modules are compiled into its binary distribution and load automatically when Node.js process starts. Core modules is predefined. ? http : - http module includes classes, methods and events to create Node.js http server. ? url :- url module includes methods for URL resolution and parsing. ? querystring :- querystring module includes methods to deal with query string. ? path :- path module includes methods to deal with file paths. ? fs :- fs module includes classes, methods, and events to work with file I/O. ? util :-util module includes utility functions useful for programmers. ? Loading Core Modules :- In order to use Node.js core or NPM modules, you first need to import it using require() function as shown below. var module = require(¡°module_name¡±);
  • 10. Types of Modules ? Local Modules : - Local modules are modules created locally in your Node.js application. ? These modules include different functionalities of your application in separate files and folders. You can also package it and distribute it via NPM ? This module is user defined. log.js =====> var log = { info: function (info) { console.log ('Info: ' + info); }, }; module.exports = log Note: - module.exports -> whatever you assign to module.exports or exports, will be exposed as a module.
  • 11. ? NPM :- Node Package Manager (NPM) is a command line tool that installs, updates or uninstalls Node.js packages in your application. It is also an online repository for open- source Node.js packages. The node community around the world creates useful modules and publishes them as packages in this repository. ? Install Package locally - > npm install <package_name> ? Install Package globally - > npm install <package_name> - g ? Update Package - > npm update <package_name> ? Uninstall Package - > npm uninstall <package_name> Node Package Manager (NPM)
  • 13. Session II completed Address: 403, Venus Benecia, Bodakdev,Ahmedabad ¨C 380053 Reach us : reach@techforceinfotech.com Contact no: +91 (79) 48904529