INT222 Zero Lecture1
INT222 Zero Lecture1
DEVELOPMENT
Lecture #0
Welcome !!!
ASSESSMENT/EVALUATION
SCHEME
• ATTENDANCE: 5%
• CA: 45%
• MTT: NO MTT
• ETT: 50%
ASSESSMENT/EVALUATION
SCHEME
PO2
Problem analysis::Identify, formulate, research literature, and analyze complex
engineering problems reaching substantiated conclusions using first principles of
mathematics, natural sciences, and engineering sciences.
PO3
Design/development of solutions::Design solutions for complex engineering
problems and design system components or processes that meet the specified
needs with appropriate consideration for the public health and safety, and the
cultural, societal, and environmental considerations.
PO4
Conduct investigations of complex problems::Use research-based knowledge
and research methods including design of experiments, analysis and
interpretation of data, and synthesis of the information to provide valid
conclusions.
Program Outcomes
PO5
Modern tool usage::Create, select, and apply appropriate techniques, resources, and
modern engineering and IT tools including prediction and modeling to complex
engineering activities with an understanding of the limitations.
PO6
The engineer and society::Apply reasoning informed by the contextual knowledge to
assess societal, health, safety, legal and cultural issues and the consequent
responsibilities relevant to the professional engineering practice.
PO7
Environment and sustainability::Understand the impact of the professional engineering
solutions in societal and environmental contexts, and demonstrate the knowledge of,
and need for sustainable development.
PO8
Ethics::Apply ethical principles and commit to professional ethics and responsibilities
and norms of the engineering practice.
PO9
Individual and team work::Function effectively as an individual, and as a member or
leader in diverse teams, and in multidisciplinary settings.
Program Outcomes
PO10
Communication::Communicate effectively on complex engineering activities with the
engineering community and with society at large, such as, being able to comprehend and
write effective reports and design documentation, make effective presentations, and give
and receive clear instructions.
PO11
Project management and finance::Demonstrate knowledge and understanding of the
engineering, management principles and apply the same to one’s own work, as a member
or a leader in a team, manage projects efficiently in respective disciplines and
multidisciplinary environments after consideration of economic and financial factors.
PO12
Life-long learning::Recognize the need for, and have the preparation and ability to engage
in independent and life-long learning in the broadest context of technological change.
PO13
Competitive Skills::Ability to compete in national and international technical events and
building the competitive spirit along with having a good digital footprint.
UNIT1
• Getting Started with Node.JS : Introducing Node.JS,
Node Pacakage Manager (npm), Custom NPMmodules,,
Installing Node, use Node.js REPL, Explore and use built-
in modules of Node.js, Use of Node.JS and GitHub,
collaborate on code with others using the git tool
• JavaScript Primer : Defining Variables and their Scope,
Understanding JavaScript Data Types, Working with
Operators and Loops, Creating Functions, JavaScript
Objects, Working with Arrays,Adding Error Handling,
Using Events, Listeners, Timers and Callbacks.
UNIT II
• Handling Data I/O in Node.js : Working with fs
module, Working with JSON, Using Buffer Module to
Buffer Data, Using Stream Module to Stream Data,
Compressing and Decompressing Data with Zlib.
• Implementing HTTP Services in Node.JS :
Introduction to HTTP module,, Processing URLs,
Processing Query Strings and Form Parameters,
Understanding Request , Response and Server
Objects
UNIT III
• Basic Websites With Node.JS : Introducing
Express, More on Express, GET, POST,
bodyParser .
• Creating Middleware with Connect : What is
Middleware?, Middleware in Connect, Access
Control with Middleware
• Socket Services in Node.js: Understanding
Network Sockets, A Socket.IO Chat Server, , A
Streaming Twitter Client
UNIT IV
• Introduction to Backend: : Introduction to
PostgreSQL database, Basics of the CRUD
pattern., Build application using CRUD, Add
User Interface for To-do Application, Convert
visual design into working HTML and CSS,
Sequelize association, migration and validation.
UNIT V
• Getting Started with MongoDB :
Understanding MongoDB and Its Data Types,
Building the MongoDB Environment, Connecting
to MongoDB from Node.js, Accessing and
Manipulating Databases, Accessing and
Manipulating Collections, Administering
Databases, Managing Collections.
UNIT VI
• Debugging, Testing and Deploying :
Debugging Node.js Applications, Testing Node.js
Applications, Deploying Node.js Applications
LIST OF PRACTICALS
Chrome Node js
V8 V8
TRADITIONAL WEB SERVER
MODEL
• In the traditional web server model, each request
is handled by a dedicated thread from the thread
pool.
• If no thread is available in the thread pool at any
point of time then the request waits till the next
available thread.
• Dedicated thread executes a particular request
and does not return to thread pool until it
completes the execution and returns a response.
TRADITIONAL WEB SERVER
MODEL(CONTD.)
NODE.JS MODEL