Oreilly - Getting MEAN with Mongo, Express, Angular, and Node Video Edition - 9781617292033VE
Oreilly - Getting MEAN with Mongo, Express, Angular, and Node Video Edition
by Simon Holmes | Publisher: Manning Publications | Release Date: November 2015 | ISBN: 9781617292033VE


"Looking to go full stack? Getting MEAN will take you there." Matt Merkes, MyNeighbor Getting MEAN teaches you how to develop web applications using the MEAN stack. First, you'll create the skeleton of a static site in Express and Node, and then push it up to a live web server. Next, add a MongoDB database and build an API before using Angular to handle data manipulation and application logic in the browser. Finally you'll add an authentication system to the application, using the whole stack. When you finish, you'll have all the skills you need to build a dynamic data-driven web application. Traditional web dev stacks use a different programming language in every layer, resulting in a complex mashup of code and frameworks. Together, the MongoDB database, the Express and AngularJS frameworks, and Node.js constitute the MEAN stack - a powerful platform that uses only one language, top to bottom: JavaScript. Developers and businesses love it because it's scalable and cost-effective. End users love it because the apps created with it are fast and responsive. It's a win-win-win! Inside: Full-stack development using JavaScript Responsive web techniques Everything you need to get started with MEAN Best practices for efficiency and reusability Learners should have some web development experience. This book/course is based on MongoDB 2, Express 4, Angular 1, and Node.js 4. Simon Holmes has been a full-stack developer since the late 1990s and runs Full Stack Training Ltd. Fantastic explanations and up-to-date, real-world examples. Rambabu Posa, LGL Assessment From novice to experienced developer, all who want to use the MEAN stack will get useful advice here. Davide Molin, CodingShack.com A ground-up explanation of MEAN stack layers. Andrea Tarocchi, Red Hat NARRATED BY CHRIS DUNN
  1. PART 1: SETTING THE BASELINE
    • Chapter 1. Introducing full-stack development 00:09:28
    • Chapter 1. Introducing Node.js: The web server/platform 00:03:56
    • Chapter 1. Fast, efficient, and scalable 00:07:00
    • Chapter 1. Introducing Express: The framework 00:03:55
    • Chapter 1. Introducing MongoDB: The database 00:07:13
    • Chapter 1. Introducing AngularJS: The front-end framework 00:07:27
    • Chapter 1. Supporting cast 00:06:13
    • Chapter 1. Putting it together with a practical example 00:03:32
    • Chapter 2. Designing a MEAN stack architecture 00:07:29
    • Chapter 2. Analytics and browser history 00:05:05
    • Chapter 2. Designing a flexible MEAN architecture 00:08:30
    • Chapter 2. Best practice: Build an internal API for a data layer 00:02:50
    • Chapter 2. Planning a real application 00:08:32
    • Chapter 2. Breaking the development into stages 00:10:32
    • Chapter 2. Hardware architecture 00:04:05
  2. PART 2: BUILDING A NODE APPLICATION
    • Chapter 3. Creating and setting up a MEAN project 00:09:02
    • Chapter 3. Creating an Express project 00:06:53
    • Chapter 3. Creating an Express project and trying it out 00:06:48
    • Chapter 3. Modifying Express for MVC 00:10:43
    • Chapter 3. Import Bootstrap for quick, responsive layouts 00:06:03
    • Chapter 3. Make it live on Heroku 00:11:13
    • Chapter 4. Building a static site with Node and Express 00:06:41
    • Chapter 4. Building basic controllers 00:04:19
    • Chapter 4. Creating some views 00:09:08
    • Chapter 4. Building a template 00:07:01
    • Chapter 4. Adding the rest of the views 00:08:30
    • Chapter 4. Take the data out of the views and make them smarter 00:06:38
    • Chapter 4. Dealing with complex, repeating data 00:11:10
    • Chapter 4. The finished homepage 00:04:26
    • Chapter 5. Building a data model with MongoDB and Mongoose 00:06:14
    • Chapter 5. Adding a Mongoose connection to our application 00:10:27
    • Chapter 5. Why model the data? 00:07:43
    • Chapter 5. Defining simple Mongoose schemas 00:09:53
    • Chapter 5. Creating more complex schemas with subdocuments 00:09:12
    • Chapter 5. Using the MongoDB shell to create a MongoDB database and add data 00:09:21
    • Chapter 5. Getting our database live 00:09:18
    • Chapter 5. Making the application use the right database 00:07:26
    • Chapter 6. Writing a REST API: Exposing the MongoDB database to the application 00:10:38
    • Chapter 6. Setting up the API in Express 00:08:37
    • Chapter 6. Including the model 00:03:03
    • Chapter 6. GET methods: Reading data from MongoDB 00:10:49
    • Chapter 6. Finding multiple documents with geospatial queries 00:09:19
    • Chapter 6. POST methods: Adding data to MongoDB 00:07:42
    • Chapter 6. PUT methods: Updating data in MongoDB 00:09:05
    • Chapter 7. Consuming a REST API: Using an API from inside Express 00:05:58
    • Chapter 7. Using lists of data from an API: The Loc8r homepage 00:07:06
    • Chapter 7. Catching errors returned by the API 00:07:19
    • Chapter 7. Getting single documents from an API: The Loc8r Details page 00:05:48
    • Chapter 7. Debugging and fixing the view errors 00:06:51
    • Chapter 7. Adding data to the database via the API: Add Loc8r reviews 00:10:23
    • Chapter 7. Protecting data integrity with data validation 00:07:55
    • Chapter 7. Validating in the browser with jQuery 00:03:31
  3. PART 3: ADDING A DYNAMIC FRONT END WITH ANGULAR
    • Chapter 8. Adding Angular components to an Express application 00:07:09
    • Chapter 8. Setting up for greatness (and JavaScript code) 00:06:02
    • Chapter 8. Displaying and filtering the homepage list 00:08:47
    • Chapter 8. Using Angular filters to format data 00:12:08
    • Chapter 8. Getting data from an API 00:08:23
    • Chapter 8. Adding HTML geolocation to find places near you 00:09:50
    • Chapter 8. Ensuring forms work as expected 00:03:09
    • Chapter 9. Building a single-page application with Angular: Foundations 00:06:14
    • Chapter 9. Switching from Express routing to Angular routing 00:08:18
    • Chapter 9. Adding the first views, controllers, and services 00:07:10
    • Chapter 9. Controller best practice: Using the controllerAs syntax 00:08:04
    • Chapter 9. Using filters and directives 00:04:48
    • Chapter 9. Improving browser performance 00:04:54
    • Chapter 9. Using UglifyJS to minify and concatenate scripts 00:06:59
    • Chapter 10. Building an SPA with Angular: The next level 00:05:04
    • Chapter 10. Making reusable page framework directives 00:09:59
    • Chapter 10. Adding additional pages and dynamically injecting HTML 00:10:27
    • Chapter 10. More complex views and routing parameters 00:06:05
    • Chapter 10. Building the Details page view 00:04:58
    • Chapter 10. Using AngularUI components to create a modal popup 00:10:35
    • Chapter 10. Using the form to submit a review 00:08:39
  4. PART 4: MANAGING AUTHENTICATION AND USER SESSIONS
    • Chapter 11. Authenticating users, managing sessions, and securing APIs 00:07:22
    • Chapter 11. Creating a user schema for MongoDB 00:07:02
    • Chapter 11. Generating a JSON Web Token 00:05:32
    • Chapter 11. Creating an authentication API with Passport 00:11:05
    • Chapter 11. Securing relevant API endpoints 00:07:36
    • Chapter 11. Creating Angular authentication service 00:08:55
    • Chapter 11. Creating register and login pages 00:07:46
    • Chapter 11. Working with authentication in the Angular app 00:05:55
    • Chapter 11. Adding user data to a review 00:06:06
  5. Oreilly - Getting MEAN with Mongo, Express, Angular, and Node Video Edition


 TO MAC USERS: If RAR password doesn't work, use this archive program: 

RAR Expander 0.8.5 Beta 4  and extract password protected files without error.


 TO WIN USERS: If RAR password doesn't work, use this archive program: 

Latest Winrar  and extract password protected files without error.


 Coktum   |  

Information
Members of Guests cannot leave comments.


SermonBox - Seasonal Collection

SermonBox - The Series Pack Collection

Top Rated News

  • Christmas Material
  • Laser Cut & Print Design Elements Bundle - ETSY
  • Daz3D - All Materials - SKU 37000-37999
  • Cgaxis - All Product - 2019 - All Retail! - UPDATED!!!
  • DigitalXModels Full Collections
  • Rampant Design Tools Full Collections Total: $4400
  • FilmLooks.Com Full Collection
  • All PixelSquid Product
  • The Pixel Lab Collection
  • Envato Elements Full Sources- 3200+ Files
  • Ui8.NET Full Sources
  • The History of The 20th Century
  • The Dover Collections
  • Snake Interiors Collections
  • Inspirational Collections
  • Veer Fancy Collections
  • All Ojo Images
  • All ZZVE Collections
  • All Sozaijiten Collections
  • All Image Broker Collections
  • Shuterstock Bundle Collections
  • Tattoo Collections
  • Blend Images Collections
  • Authors Tuorism Collections
  • Motion Mile - Big Bundle
  • PhotoBacks - All Product - 2018
  • Dekes Techniques - Photoshop & Illustrator Course - 1 to 673
Telegram GFXTRA Group
Udemy - Turkce Gorsel Ogrenme Setleri - Part 2
Videohive Wow Pack Series


rss