kingers Posted April 23 Report Share Posted April 23 Udemy - The Complete Node.js Developer Course 2.0 (2016)MP4 | AVC 1257kbps | English | 1920x1080 | 30fps | 24h 30mins | AAC stereo 126kbps | 12.36 GB Genre: Video Training Learn Node by building production applications using the latest Node version (v6). Are you looking to create real-world Node applications? Maybe you want to switch careers or launch a side-project to generate some extra income. Either way, you're in the right place. I've designed this course around a single goal: Turning you into a professional Node developer capable of developing, testing, and deploying real-world production applications. There's no better time to dive in. According to the 2016 Stack Overflow Survey, Node is in the top ten for back-end popularity and back-end salary, with an average salary of $85k. This means more jobs and more opportunities for you! "Andrew Mead is perhaps the best instructor in Udemy's portfolio. His explanations are clear, his pace is great, and he is super responsive to questions. I highly recommend his courses." Bert McLees This is a course for the doer. This course is entirely project-based. From the very beginning you'll be programming every single app and completing various challenges I've designed to help test and reinforce what you've learned. There's no copying-and-pasting here. This course is about writing code and building projects. You'll be programming and launching four Node apps: A note-taking app to get your feet wet A weather application that interacts with Google Maps and Dark Sky A todo REST API complete with user accounts and authentication A real-time chat app with a client-side companion During eight chapters you'll learn: Node Npm Asynchronous programming MongoDB Express Socket.IO Authentication with JWTs Mongoose Deploying apps with Heroku Version control with Git GitHub Code testing Application debugging Awesome new ES6 features Mocha And more! Up-to-date. In-depth. The Complete Node.js Developer Course 2.0 is built from the ground up around the latest version of Node.js (version 6.x.x). Everything in the course has been completely recreated based on the feedback from the {{13,000 students enrolled in the first version of this course. You'll be learning all the cutting edge features available only in the latest software versions. Everything you need comes in one easy-to-use package. You can stop worrying if you're learning the right skills to build an app or land a new job. I've curated all the tech that's essential to building real-world apps. I've mapped out everything in a comprehensive, easy-to-follow package designed to get you up in running in a few weeks. I guarantee this is the most up-to-date and engaging Node course available, and it comes with a 30-day money-back guarantee. Section: 1 Welcome 1. Welcome & Asking Awesome Questions 1:20 Section: 2 Getting Setup 2. Section Intro 0:46 3. Installing Node 6:30 4. What Is Node? 7:23 5. Why Should I Use Node? 15:17 6. Installing Atom 2:32 7. Hello World! 4:37 hello-world.zip Section: 3 Node.js Fundamentals (Note App) 8. Section Intro 1:11 9. Using Require 15:25 module-basics.zip 10. Requiring Your Own Files 12:23 require-own-files.zip 11. Using 3rd Party Modules 15:31 3rd-party-modules.zip 12. Restarting App with Nodemon 6:11 global-modules.zip 13. Getting Input From User 12:22 getting-input.zip 14. Simplified Input With Yargs 19:13 yargs.zip 15. Working With JSON 14:55 json.zip 16. Adding and Saving Notes 13:50 adding-note.zip 17. Refactoring For Reusability 10:00 refactor.zip 18. Removing a Note 9:08 removing-note.zip 19. Reading Notes and Reusability 10:57 reading-note.zip 20. Debugging Node.js Applications 12:47 debugging.zip 21. Using Node Inspector 1:34 debugging-pt2.zip 22. Listing Notes 4:37 listing-notes.zip 23. Requiring Arguments and Advanced Yargs 15:12 advanced-yargs.zip 24. Arrow Functions 9:50 arrow-functions.zip Section: 4 Asynchronous Node.js (Weather App) 25. Section Intro 1:04 26. Async Basics 7:51 async-basics.zip 27. Call Stack & Event Loop 12:20 28. Callback Functions & APIs 16:12 callbacks.zip 29. Pretty Printing Objects 2:44 pretty-printing.zip 30. What's Makes up an HTTP Request? 13:26 http.zip 31. Encoding User Input 13:47 encoding.zip 32. Callback Errors 9:15 geocoding.zip 33. Abstracting Callbacks 12:38 abstracting-callbacks.zip 34. Wiring Up Weather Search 13:39 weather.zip 35. Chaining Callbacks Together 17:15 chaining.zip 36. Intro to ES6 Promises 12:36 promises.zip Quiz 1: Promises Quiz 37. Advanced Promises 17:38 promises-2.zip 38. Weather App With Promises 17:29 weather-promises.zip 39. Extra Features 1:07 Section: 5 Web Servers and Application Deployment 40. Section Intro 1:07 41. Hello Express 16:49 hello-express.zip 42. Creating a Web Server 7:12 static-server.zip 43. Rendering Templates with Data 13:53 rendering-templates.zip 44. Advanced Templating 13:37 advanced-templates.zip 45. Express Middleware 16:13 middleware.zip 46. Adding Version Control (Git) 12:31 git.zip 47. Setting Up GitHub & SSH Keys 13:29 heroku-github.zip 48. Deploying Your Apps 15:07 deploying.zip 49. Adding a New Feature and Deploying 8:30 workflow-test.zip Section: 6 Testing Your Applications 50. Section Intro 1:03 51. Mocha and Basic Testing 16:41 basic-testing.zip 52. Watch and Auto Restart Tests 4:03 watch-tests.zip 53. Using an Assertion Library 19:58 assertion-libraries.zip 54. Testing Asynchronous Code 11:25 async-testing.zip 55. Testing Express Applications: Part I 3:16 testing-express.zip 56. Testing Express Applications: Part II 19:12 testing-express-2.zip 57. Organizing Test With describe() 6:44 describe.zip 58. Test Spies 16:05 spies.zip Section: 7 MongoDB, Mongoose, and REST APIs (Todo API) 59. Section Intro 1:24 60. Installing MongoDB and Robomongo (Mac, Linux) 9:54 61. Installing MongoDB and Robomongo (Windows) 10:44 62. Building a NoSQL Vocabulary 2:48 63. Connecting to Mongo and Writing Data 18:43 connect-write.zip 64. The ObjectId 10:05 objectid.zip 65. Fetching Data 16:33 fetching-data.zip 66. Setting Up The Repo 3:48 git.zip 67. Deleting Documents 15:24 deleting-documents.zip 68. Updating Data 11:47 updating-documents.zip 69. The Mongoose ORM 1:02 70. Setting Up Mongoose 16:07 mongoose-setup.zip 71. Validators, Types, and Defaults 13:05 schemas.zip 72. Installing Postman 5:18 73. Resource Creation Endpoint - POST /todos 18:08 post-todos.zip 74. Testing POST /todos 19:50 test-post-todos.zip 75. List Resources - GET /todos 7:09 get-todos.zip 76. Testing GET /todos 6:14 test-get-todos.zip 77. Mongoose Queries and ID Validation 16:26 queries-and-id-validation.zip 78. Getting an Individual Resource - GET /todos/:id 13:28 get-single-resource.zip 79. Testing GET /todos/:id 10:53 testing-get-todo.zip 80. Deploy API to Heroku 9:57 deploy-to-heroku.zip 81. Postman Environments 5:58 82. Delete a Resource - DELETE /todos/:id 14:54 delete-todo.zip 83. Testing DELETE /todos/:id 10:18 testing-delete-todo.zip 84. Updating a Resource - PATCH /todos/:id 14:19 update-todo.zip 85. Testing PATCH /todos/:id 11:01 testing-update-todo.zip 86. Creating a Test Database 13:39 test-database.zip Section: 8 Security and Authentication 87. Section Intro 0:53 88. Setting Up The User Model 17:58 usermodel.zip 89. JWTs and Hashing 19:32 jwt.zip 90. Generating Auth Tokens and Setting Headers 16:45 generatingauthtokens.zip 91. Private Routes and Auth Middleware 18:45 privateroute.zip 92. Hashing Passwords 16:43 hashingpasswords.zip 93. Seeding Test Database With Users 13:47 seedingusers.zip 94. Testing POST /users and GET /users/me 17:35 testsignup.zip 95. Logging In - POST /users/login 16:52 login.zip 96. Testing POST /users/login 9:35 testlogin.zip 97. Logging Out - DELETE /users/me/token 7:58 logout.zip 98. Testing DELETE /users/me/token 7:19 testinglogout.zip 99. Making Todo Routes Private (Part 1) 11:36 userstodospt1.zip 100. Making Todo Routes Private (Part 2) 16:33 userstodospt2.zip 101. Improving App Configuration 17:47 updatedconfig.zip 102. Deploying To Heroku 9:37 heroku.zip 103. Bonus: Advanced Postman 10:50 Section: 9 Real-Time Web Apps with Socket.io 104. Section Intro 1:09 105. Creating a New Project 17:27 newproject.zip 106. Adding Socket.io to an App 19:45 addingsocketio.zip 107. Emitting and Listening to Events 17:35 emitandon.zip 108. Emitting and Listening to Events (Solution) 6:22 emitsolution.zip 109. Broadcasting Events 15:05 broadcasting.zip 110. Message Generator & Tests 13:43 messagegenerator.zip 111. Event Acknowledgements 7:12 acknowledgements.zip 112. Message Form & jQuery 17:48 messageform.zip 113. Geolocation Part I 14:50 geolocation1.zip 114. Geolocation Part II 17:38 geolocation2.zip 115. Styling The Chat Page 17:19 chatstyles.zip 116. Timestamps and Formatting with Moment 17:57 momentjs.zip 117. Printing Message Timestamps 9:46 messagetimestamp.zip 118. Moustache.js 15:55 moustache.zip 119. Autoscrolling 13:07 autoscrolling.zip 120. Adding a Join Page 10:17 joinpage.zip 121. Passing Room Data 19:36 joinevent.zip 122. Socket.io Rooms 7:33 joinroom.zip 123. Storing Users With ES6 Classes: Part I 18:40 classes1.zip 124. Storing Users With ES6 Classes: Part II 18:31 classes2.zip 125. Wiring Up User List 14:22 userlist.zip 126. Sending Messages To Room Only 10:21 privatemessages.zip 127. New Feature Ideas 2:04 No mirrors please AusFilehttps://ausfile.com/bwzapxm1j3g6/yxusj..The.Complete.Node.js.Developer.Course.part01.rarhttps://ausfile.com/q3t9704c6htw/yxusj..The.Complete.Node.js.Developer.Course.part02.rarhttps://ausfile.com/vrpzlve4992l/yxusj..The.Complete.Node.js.Developer.Course.part03.rarhttps://ausfile.com/2jdyhyrw5n6u/yxusj..The.Complete.Node.js.Developer.Course.part04.rarhttps://ausfile.com/6s4n0ogawlup/yxusj..The.Complete.Node.js.Developer.Course.part05.rarhttps://ausfile.com/ql4dh6my1oni/yxusj..The.Complete.Node.js.Developer.Course.part06.rarhttps://ausfile.com/efwtrofcw2mb/yxusj..The.Complete.Node.js.Developer.Course.part07.rarhttps://ausfile.com/mj03h27kpcgb/yxusj..The.Complete.Node.js.Developer.Course.part08.rarhttps://ausfile.com/g5crabwz41tf/yxusj..The.Complete.Node.js.Developer.Course.part09.rarhttps://ausfile.com/vlkqpcx8uz9k/yxusj..The.Complete.Node.js.Developer.Course.part10.rarhttps://ausfile.com/z933y6nbruyp/yxusj..The.Complete.Node.js.Developer.Course.part11.rarhttps://ausfile.com/0ecdcu3gc23g/yxusj..The.Complete.Node.js.Developer.Course.part12.rarhttps://ausfile.com/gf5srmddu1fd/yxusj..The.Complete.Node.js.Developer.Course.part13.rarhttps://ausfile.com/6v8nqiqaa09v/yxusj..The.Complete.Node.js.Developer.Course.part14.rarhttps://ausfile.com/j4r7jva1o12o/yxusj..The.Complete.Node.js.Developer.Course.part15.rarhttps://ausfile.com/uxdu5w8zploh/yxusj..The.Complete.Node.js.Developer.Course.part16.rarhttps://ausfile.com/3fsyt0uo9pd7/yxusj..The.Complete.Node.js.Developer.Course.part17.rarhttps://ausfile.com/2m8oa0dqu8qx/yxusj..The.Complete.Node.js.Developer.Course.part18.rarhttps://ausfile.com/5m9zrtwoghnz/yxusj..The.Complete.Node.js.Developer.Course.part19.rarhttps://ausfile.com/zr28fdsqok8s/yxusj..The.Complete.Node.js.Developer.Course.part20.rarhttps://ausfile.com/ga1c1x97qgey/yxusj..The.Complete.Node.js.Developer.Course.part21.rarhttps://ausfile.com/79umysfhnsj1/yxusj..The.Complete.Node.js.Developer.Course.part22.rarhttps://ausfile.com/ew7wdjcvxjj0/yxusj..The.Complete.Node.js.Developer.Course.part23.rarhttps://ausfile.com/w56qlqafaff5/yxusj..The.Complete.Node.js.Developer.Course.part24.rarhttps://ausfile.com/uqokxs2ltzb3/yxusj..The.Complete.Node.js.Developer.Course.part25.rarhttps://ausfile.com/fdu5hdrwd3a6/yxusj..The.Complete.Node.js.Developer.Course.part26.rarRapidGatorhttps://rapidgator.net/file/391f3ed080f3e21ce7a742982933275e/yxusj..The.Complete.Node.js.Developer.Course.part01.rarhttps://rapidgator.net/file/d52269617d231bca6bf2e3c3734f4229/yxusj..The.Complete.Node.js.Developer.Course.part02.rarhttps://rapidgator.net/file/4611a39bb65e1658f9749be620e33dc7/yxusj..The.Complete.Node.js.Developer.Course.part03.rarhttps://rapidgator.net/file/5675bd7e2384b6b979257ecbb6cf3d95/yxusj..The.Complete.Node.js.Developer.Course.part04.rarhttps://rapidgator.net/file/63db08f19af043c4409f9aaa5fc02583/yxusj..The.Complete.Node.js.Developer.Course.part05.rarhttps://rapidgator.net/file/357b3fff0d71c334d3b77a71bc4d1642/yxusj..The.Complete.Node.js.Developer.Course.part06.rarhttps://rapidgator.net/file/18be00205914c9288f39a43ef40d5a64/yxusj..The.Complete.Node.js.Developer.Course.part07.rarhttps://rapidgator.net/file/326e09640d8fdc26dc75563eb0118bdc/yxusj..The.Complete.Node.js.Developer.Course.part08.rarhttps://rapidgator.net/file/3e2b039825318aef14e9fb9229be6412/yxusj..The.Complete.Node.js.Developer.Course.part09.rarhttps://rapidgator.net/file/1b0a00b6a7239c0432a75981c8caa9d6/yxusj..The.Complete.Node.js.Developer.Course.part10.rarhttps://rapidgator.net/file/86430fe86a485c32e9137747c0fb3488/yxusj..The.Complete.Node.js.Developer.Course.part11.rarhttps://rapidgator.net/file/bea476250878a0123f42122eac7ec154/yxusj..The.Complete.Node.js.Developer.Course.part12.rarhttps://rapidgator.net/file/49992b569d9cb026180e4c5ac8229415/yxusj..The.Complete.Node.js.Developer.Course.part13.rarhttps://rapidgator.net/file/244e3153e28c0a64081625b06824ab9b/yxusj..The.Complete.Node.js.Developer.Course.part14.rarhttps://rapidgator.net/file/ec3a659d57f9e3c2fa46f5d17109e362/yxusj..The.Complete.Node.js.Developer.Course.part15.rarhttps://rapidgator.net/file/031087df50c4c441c7638486b8ded30a/yxusj..The.Complete.Node.js.Developer.Course.part16.rarhttps://rapidgator.net/file/463b9451fdfe7797e8db25ebec1a0b7e/yxusj..The.Complete.Node.js.Developer.Course.part17.rarhttps://rapidgator.net/file/cb58786b7e62febe4f0bba0a6f0d42f9/yxusj..The.Complete.Node.js.Developer.Course.part18.rarhttps://rapidgator.net/file/c600f46654c2fa8427420104ad507000/yxusj..The.Complete.Node.js.Developer.Course.part19.rarhttps://rapidgator.net/file/5f4075268166e62c651f93e698a926c0/yxusj..The.Complete.Node.js.Developer.Course.part20.rarhttps://rapidgator.net/file/b3987d11f99c64914e3029e85181ee1f/yxusj..The.Complete.Node.js.Developer.Course.part21.rarhttps://rapidgator.net/file/f794ddbb09a46e0c1efc0b46fb659f04/yxusj..The.Complete.Node.js.Developer.Course.part22.rarhttps://rapidgator.net/file/c0f85bef81ae8a327c2552c4e8718e47/yxusj..The.Complete.Node.js.Developer.Course.part23.rarhttps://rapidgator.net/file/5aa8eb96a7f40cac899e4d551c3d48bc/yxusj..The.Complete.Node.js.Developer.Course.part24.rarhttps://rapidgator.net/file/ceb64f71fd46315b6353bfa520d58998/yxusj..The.Complete.Node.js.Developer.Course.part25.rarhttps://rapidgator.net/file/23b539e5c28156d61bb41a4413e5b621/yxusj..The.Complete.Node.js.Developer.Course.part26.rar Link to comment Share on other sites More sharing options...
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now