MEAN Stack Application Tutorial | Build a MEAN Application From Scratch | MEAN Stack App | Edureka

preview_player
Показать описание
1) Angular
3) Express
4) MongoDB

---------------- JavaScript Certification Training -----------------

Subscribe to our channel to get video updates. Hit the subscribe button above.

How it Works?

1. This is a 4 Week Instructor led Online Course, 20 hours of assignment and 20 hours of project work
2. We have a 24x7 One-on-One LIVE Technical Support to help you with any problems you might face or any clarifications you may require during the course.
3. At the end of the training you will have to work on a project, based on which we will provide you a Grade and a Verifiable Certificate!

- - - - - - - - - - - - - -

About The Course

2. Build applications using Express Framework
3. Master the use of Node Package Manager (NPM)
4. Deploy applications to Heroku
5. Work with different template engines e.g. EJS, Jade and Handlebars
6. Create Web Applications with Express using MongoDB
7. Learn how to use hosted MongoDB provided by MongoLab
8. Hash passwords using bcrypt, handle authentication and logout functionality
9. Deploy Express and MongoDB application to Heroku
10. Set a custom domain for your Heroku deployed applications by purchasing custom domain from GoDadddy
11. Build realtime chat application using Socket IO
12. Learn how to use build systems e.g. Grunt and Gulp
13. Test Your code using Mocha and Chai
14. Get started with Hapi and Meteor and understand when to use one over other

- - - - - - - - - - - - - -

Who should go for this Course?

1. Web Developers
2. Project Managers
3. Software Architects
4. Testing Professionals
- - - - - - - - - - - - - -

Customer Review:
Subbu Mamidi, Microsoft, says: I never saw this much professionalism in top 5 clients I worked in US in the last 15 years. Excellent course structure and the instructor was very good and prompt.
Рекомендации по теме
Комментарии
Автор

This is the first MEAN stack tutorial I've found that covers all the basics and nothing else. All the other videos get waaaay into the weeds with extra fluff. Thank you for sticking to the basics and teaching them well.

mezzormox
Автор

I am completely blown away from this..SO much value on your channel, You guys deserve 1 million subs! keep on!

germandream
Автор

Thanks so much for taking the time to put this tutorial together! The value of this tutorial cannot be overstated. It is simple, clear and keeps the amount of code needed to create a functional application down to a minimum. As a UI developer, I find business logic to be somewhat intimidating, but this tutorial has really helped me to have a better understanding of how the apps I work on function on the backend. Keep up the good work fellows.

marczenkner
Автор

I still don't fully understand and I know half of the imports don't work the same anymore, but this tutorial took me from understanding nothing to understanding about half of it. Thanks so much for this resource, it's helped me a lot!

ChupachuGames
Автор

excellent for any one who things that they can start with MEAN... just one stop to learn M.E.A.N and build the other

srikanthcrmkt
Автор

Excellent tutorial. You covered all of the basic functionality necessary to develop a MEAN app in an easy to follow format without any extra crap. 10/10

HeyAbyss
Автор

thanks a lot for this tutorial, great tutorial for beginners on MEAN, was able to get everything running on my mac.. watched a lot of tutorials on mean from different people and sticked to yours which i thinks is very easy to follow.. thanks again...

backbenchbuddy
Автор

Thanks.. you done great job...once again thanks

rekhamari
Автор

Incredibly helpful. I tried so many other tutorials, but none of them were as clear and to the point as yours. Great job!

vai
Автор

The most useful tutorial EVER! Finally got AngularJS to work in my MEAN stack application

yasmeenhassan
Автор

Great tutorial! I would like to see how the MongoDB has been updated locally. I just subscribed and I am looking forward for the next. Thanks for your clear explanation. Kudos to the presenter!

jocelynbaduria
Автор

Dude this is gold to me. Thanks so much

jonwinder
Автор

Nice tutorial for MEAN stack developer. I have seen complete video and learning lot of thing. And also eager for some more video like this(complete process MEAN) with the new and amazing app like a complete e-commerce website, youtube website etc. Thanks for amazing and learning

AnilSahu-zxwk
Автор

Wowwww!!!what an explanation ..This is only what I was looking for..Thank u soo much..

sanikaraul
Автор

Really i want to thank the edureka team to spend the time for this course particularly . . .

Gowtham_sasikala
Автор

I follow this usefull tutorial, but, get stucked two times due to similar causes. When you modify the contacts.component.html, and use the *ngFor control, and after that, the [(ngModule)] control, you could experiment a empty page behaviour. This is due to two posible reasons:

1. syntax errors in your html.
2. lack of correct imports on your app.module.ts

On the second case, I let you here the contents of this file in order to get the example works:

//app.module.ts


import { AppComponent } from './app.component';
import { ContactsComponent } from
import { ContactService } from './contact.service';


@NgModule({
declarations: [
AppComponent,
ContactsComponent
],
imports: [
BrowserModule,
HttpModule,
FormsModule
],
providers: [ContactService],
bootstrap: [AppComponent]
})
export class AppModule { }

alcanceinternacional
Автор

Issues you will run into if you follow this video and their fixes :

1. Can't run NodeMon from CMD : Install nodemon with (-g), that would be "npm install nodemon -g", ensure that you don't user --save
2. Can't run ng commands (Angular CLI) from CMD: Install @angular/CLI that would be "npm install -g angular-cli", ensure that you don't user --save
3. Missing imports in app.module.ts : HttpModule and FormsModule imports to be added in app.module.ts, the video part where this is added to the code is not shown.

The app.module.ts file is as follows:


import { AppComponent } from './app.component';
import { ContactsComponent } from

@NgModule({
declarations: [
AppComponent,
ContactsComponent
],
imports: [
BrowserModule, HttpModule, FormsModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }

NithinPrabhu
Автор

Thank you so much, i never understood the MEAN Stack concept and you brilliantly explained in you video. Again, thank you so much!

MrPhiineasKK
Автор

This is awesome i never seen before like this ..thank you #Edureka

kiranreddy
Автор

This is a great tutorial. I have learned and understood about angular lot from this.

ddpandi