MEAN Stack Training
Course Duration
Offline / Online Training & Projects & Practical Sessions
Eligibility
Graduates or Diploma Holders
Course Fee
GST will be charged at checkout Flexible Payment Options Available
MEAN
MongoDB - document database
Express(.js) - Node.js web framework
Angular(.js) - a client-side JavaScript framework
Node(.js) - the premier JavaScript web server
I. MongoDB:
1 ─ Overview
2 ─ Advantages
3 ─ Environment
4 ─ Data Modelling
5 ─ Create Database
6 ─ Drop Database
7 ─ Create Collection
8 ─ Drop Collection
9 ─ Datatypes
10 ─ Insert Document
11 ─ Query Document
12 ─ Update Document
13 ─ Delete Document
14 ─ Projection
15 ─ Limit Records
16 ─ Sort Records
17 ─ Indexing
18 ─ Aggregation
19 ─ Replication
20 ─ Sharding
21 ─ Create Backup
22 ─ Deployment
23 ─ Java
24 ─ PHP
ADVANCED
25 ─ Relationships
26 ─ Database References
27 ─ Covered Queries
28 ─ Analyzing Queries
29 ─ Atomic Operations
30 ─ Advanced Indexing
31 ─ Indexing Limitations
32 ─ ObjectId
33 ─ MapReduce
34 ─ Text Search
35 ─ Regular Expression
36 ─ RockMongo
37 ─ GridFS
38 ─ Capped Collections
39 ─ Auto-Increment Sequence
II. Expres JS:
- Routing
- Middleware
- Error Handling
- Database Integration
Introduction To Angular
Introduction to JavaScript MVC Framework & Angular
- Objectives
- Completing this lesson
- You should be able Compare JavaScript Design Patterns - MVC
- Explain Client side SPA
- Libraries
- Frameworks
- Demonstrate Typescript
Setup Angular Project
- Topics
- JavaScript MVC
- SPA Intro
- NodeJS Intro (NPM)
- Typescript Introduction (Introduction, When to use types / When not)
- Hands On
- Angular Project Setup and Hello World
- Components and DOM Interactions
- Explain its components, and related interactions
Typescripts in detail
- Objectives
- Completing this lesson
- Work with Multiple components
- Work with DOM manipulation API
- Hands On
- Creating components and using Metadata
- Multiple Components and Passing data
- Introduction to DOM Manipulation using Angular APIs
Components and Dependency Injection
- Discuss the dependency injection, and application strategies
- Objectives
- completing this lesson
- you should be able to: Describe Dependency Injection
- Describe creation and working with Injectable dependencies
- Express Change detection and Emulation strategies
Work with Application lifecycle hooks
- Topics
- Component creation strategies
- Angular lifecycle hooks
- Introduction to Dependency Injection
- Sharing data between components
- Hands On
- Using component creation strategies and related metadata
- Using Angular lifecycle hooks
- Working with Services and Dependency Injection
- Routes
Inbuilt Directives and pipes
- Describe the working of SPA routes and using inbuilt Directives/Pipes
- Objectives
- completing this lesson
- you should be able to: Analyze Application cleanliness and Angular Modules
- Work with SPA Routes
- Work with inbuilt
- Directives and Forms
Work with inbuilt Pipes
- Topics
- Angular Modules
- Routes (Simple and Nested)
- Inbuilt Directive
- Inbuilt Pipes
- Hands On
- Working with Routes,
- Working with Multiple Modules,
- Inbuilt Directives and Forms,
- Inbuilt Pipes
Custom Directives and Pipes
- Creation of custom reusable functionalities
- Objectives
- completing this lesson
- you should be able to: Work with custom directives
- Work with custom pipes
- Work with HTTP features
Describe how Promises and Observables work
- Topics
- Custom Directives,
- Custom Pipes,
- Inbuilt Features - HTTP Request
- Hands On
- Creating custom Directives,
- Creating custom Pipes,
- Inbuilt Features - HTTP Requests
Third party Library integration, Other APIs
- Working with External Libraries and using Angular APIs
- Objectives
- completing this lesson
- you should be able to: Work with External / Third party Libraries like
- JQuery / Socket.IO
- Discuss and Work with other APIs
- Analyze options available for upgrading from 1.x
Discuss the concept of Internationalization and Localization
- Topics
- Introduction to Third party library integration
- Introduction to SystemJS/CommonJS
- Integrating JQuery / Socket.io
- Introduction to i18n and l10n
- Touch Angular 1.x to 2.x (or Higher usage) - Do’s and Don’ts
- Other APIs
- Hands On
- Introduction to Third party library integration,
- Third party Library integration,
- Socket.IO usage,
- I18N and L10N,
- Other APIs
Unit-Testing and Angular-CLI
- Explain Unit testing in Angular and Working with Angular-CLI
- Objectives
- completing this lesson
- you should be able to: Describe Unit testing and TDD concepts
- Work with Jasmine Framework
- Work with Angular-CLI
- Work with Angular-CLI for Test environment setup
- Work with other Angular application development Tools
- Topics
- Unit Testing,
- related Tools, and TDD,
- Introduction to Jasmine Framework,
- Introduction to Angular CLI,
- Unit Test Environment and set up using Angular CLI, Other Tool
- Hands On
- Unit testing Jasmine,
- Creating a Project with Angular-CLI
- Creating Test environment and tests for Angular application
Project/Use cases
- Learn how to create an Angular Application
- Objectives
- completing this lesson,
- you should be able to: Develop Angular Applications and work with Data.
Project / Cases
- Case 1 – Simple Employee Management
- Case 2 – Top Movies
- Case 3 – Grocery list Management
- Project –Application level live project
Node JS Syllabus
- Introduction
- What is Node JS?
- Advantages of Node JS
- Traditional Web Server Model
- Node.js Process Model
Module 2:- Setup Dev Environment
In this chapter, you will learn about the tools required and steps to setup development environment to develop a Node.js application and to work with the REPL to work with the Console.
- Install Node.js on Windows
- Installing in mac os
- Working in REPL
- Node JS Console
Module 3:- Node JS Modules
In this chapter, you will know what is a module, functions and examples. And achieving modularity and separation of concern with the NodeJS Modules.
- Functions
- Buffer
- Module
- Module Types
- Core Modules
- Local Modules
- Module.Exports
Module 4:- Node Package Mananger
This deals with working with npm to install and update packages and Updating your package to the NPM and managing and updating your current Packages.
- What is NPM
- Installing Packages Locally
- Adding dependency in package.json
- Installing packages globally
- Updating packages
Module 5:- Creating Web server
In this chapter we will learn creating web server, hadling GET, POST,PUT and Delete requests and listening to certain port numbers and handling routing with basic web server.
- Creating web server
- Handling http requests
- Sending requests
Module 6:- File System
In this module, we will work with files, reading, writing, updating files, and the concept of chunks, buffers, and uploading files synchronously and asynchronously.
- Fs.readFile
- Writing a File
- Writing a file asynchronously
- Opening a file
- Deleting a file
- Other IO Operations
Module 7:- Debugging Node JS Application
In this chapter you will learn how to debug node js application. Debugging is a process of tracing the bugs and performance issues to optimize your code.
- Core Node JS debugger
- Debugging with Visual Studio
Module 8:- Events
In this chapter you work with the events in Node JS, and the significance of the events, writing your own events because Node is event driven framework.
- EventEmitter class
- Returning event emitter
- Inhering events
Module 9:- Express.JS
In this chapter you will learn how to use express framework to create web applications. Express is the most popular framework to build efficient web applications with minimum coding.
- Configuring routes
- Working with express
Module 10:- Serving Static Resources
In this chapter you will learn how to serve static html pages to the browser, and serving other file formats and restricting certain files.
In this you will to serve static resources with built in middle ware.
- Serving static files
- Working with middle ware
Module 11:- Database connectivity
In this chapter you will learn how to connect to SQL Server and perform CRUD operations. It is like ADO.net for MS.NET applications and JDBC for java. We will use different Node JS modules to connect with database.
- Connection string
- Configuring
- Working with select command
- Updating records
- Deleting records
Module 12:- Template Engines
In this chapter you learn how use template engines to perform 2 way databinding and appending dynamic data to the webpage and different view engines and their sytax.
- Why Template Engine
- What is Jade
- What is vash
- Example
Athulkrishna Prakash
Software Developer [ MEARN ] | Tamchery Solutions
Mohammad Anees A A
Technical Specialist | Cyber Park
V S Sreedevi
Python Developer | Infotura Solutions
Dhaneesh v jayakumaran
Software Developer | Mdigitz Soft Solutions
ABDUL LATHEEF M M
Software Tester | Growtech Software Private Limited
Sreelakshmi S
Software Tester | KOKONET Technologies
Ardra Sasidharan
Junior Developer | Nav Technologies
Snehapriya ES
Software Testers | KOKONET Technologies
Explore Other Courses
Choose from our comprehensive list of industry-standard courses designed to get you hired.
Salesforce - Admin
PHP - React JS Fullstack Training
Load Runner
PHP - Angular Fullstack Training
API Testing with Postman
DataWarehouse/ETL
What Students Say
Course : Software Testing With ISTQB Training I highly recommend our tutors Twinkle ma'am, Jayasudha ma'am and Vidhya ma'am at Rogersoft to anyone looking for software testing course as they are very patient and understanding making it easy to ask questions and clarify doubts. They've helped me refresh my knowledge even after a career gap with their proper guidance and support.
Course : Software Testing with AI- With ISTQB Training I pursued the Software Testing course with ISTQB training at Rogersoft Technologies. The course is well-structured and helped me build a strong foundation and confidence in software testing. Special thanks to the mentors Twinkle ma’am, Jayasudha ma’am, and Vidhya ma’am for their guidance and support throughout the training.
Course : JMeter, Playwright Automation Training I recently did JMeter training here with Sandeep sir and I thoroughly enjoyed the course as all the sessions were explained very clearly and professionally and his knowledge on this is highly commendable . Sir was very supportive and approachable throughout and hence I never hesitated to clarify my queries. Highly recommend Sandeep Sir.
I did a course on Playwright Javascript also here, with the tutor , Mr. Sreedarshan Sir and all the sessions were very informative and helpful. Sir has in depth knowledge on all the topics and also encouraged the students to ask as many queries as we need. I would highly recommend Rogersoft Technologies and Sreedarshan Sir.
Course : DevOps The DevOps training program was conducted effectively. The instructor explained concepts clearly and ensured proper understanding through practical demonstrations. The sessions were interactive, and support was provided whenever clarification was needed. It was a valuable learning experience.
Course : DevOps The instructor demonstrated strong subject knowledge and delivered the DevOps sessions in a systematic manner. Real-time examples and hands-on practice helped in understanding industry-relevant tools. Overall, the training met expectations.
Course : ISTQB I have successfully completed the ISTQB certification after attending the course at Rogersoft. The trainers were very supportive, and the sessions were easy to understand. Daily questions and discussions helped reinforce the concepts, making the learning process more effective. Overall, it was a good learning experience.
Course : Asp.Net Web API Training I had done .NET course at Rogersoft.. it was really nice experience since the training was practical oriented and the trainer was really helpful… thank you Rogersoft and the team
Course : Data Analytics I recently completed the Data Analytics course from Rogersoft Technologies and overall I had a positive learning experience. The excellent teaching by the instructor made it a highly valuable learning experience.
Course : Full Stack - .Net, React, SQL The classes were really good. I had no experience on React and was able to learn it easily with Rogersoft Technologies. Manoj sir was really good and he explained every single thing in a very understandable way and going to the deep level as well. He also explain every topics n number of times until you understand it clearly. He taught us based on the latest version and tools. Overall the classes were too good. Happy with the entire team and classmates too!!! Thank you!!!
Course : Software Testing (Combo) - 3 months I recently joined Rogersoft Technologies and I am thoroughly impressed with the experience so far. The mentors here are exceptional in their teaching methods, ensuring that every concept is well understood. Additionally, the entire staff is incredibly welcoming and professional, making the learning environment very supportive and enjoyable. I highly recommend Rogersoft to anyone looking to further their education or skills. It truly stands out in terms of quality and commitment.