Node.js: The Complete Guide to Build RESTful APIs (2018)
Node.js: The Complete Guide to Build RESTful APIs (2018), available at $99.99, has an average rating of 4.6, with 224 lectures, based on 12198 reviews, and has 51976 subscribers.
You will learn about Build the backend for your web and mobile apps Use modern JavaScript features (ES6, ES7) Implement CRUD operations Handle and log errors, the right way Write unit and integration tests Practice test-driven development (TDD) Store and retrieve complex data in MongoDB Implement authentication and authorization Deploy your Node apps to production Apply the best practices for building fast, scalable and secure apps This course is ideal for individuals who are You’re a back-end developer familiar with frameworks like ASPNET, Rails, Django, etc. Now, you want to add Node to your toolbox. or You’re a front-end developer and want to transition to full-stack development. or Having Node on your resume helps you find more jobs and make more money. It is particularly useful for You’re a back-end developer familiar with frameworks like ASPNET, Rails, Django, etc. Now, you want to add Node to your toolbox. or You’re a front-end developer and want to transition to full-stack development. or Having Node on your resume helps you find more jobs and make more money.
Enroll now: Node.js: The Complete Guide to Build RESTful APIs (2018)
Summary
Title: Node.js: The Complete Guide to Build RESTful APIs (2018)
Price: $99.99
Average Rating: 4.6
Number of Lectures: 224
Number of Published Lectures: 224
Number of Curriculum Items: 224
Number of Published Curriculum Objects: 224
Original Price: $174.99
Quality Status: approved
Status: Live
What You Will Learn
- Build the backend for your web and mobile apps
- Use modern JavaScript features (ES6, ES7)
- Implement CRUD operations
- Handle and log errors, the right way
- Write unit and integration tests
- Practice test-driven development (TDD)
- Store and retrieve complex data in MongoDB
- Implement authentication and authorization
- Deploy your Node apps to production
- Apply the best practices for building fast, scalable and secure apps
Who Should Attend
- You’re a back-end developer familiar with frameworks like ASPNET, Rails, Django, etc. Now, you want to add Node to your toolbox.
- You’re a front-end developer and want to transition to full-stack development.
- Having Node on your resume helps you find more jobs and make more money.
Target Audiences
- You’re a back-end developer familiar with frameworks like ASPNET, Rails, Django, etc. Now, you want to add Node to your toolbox.
- You’re a front-end developer and want to transition to full-stack development.
- Having Node on your resume helps you find more jobs and make more money.
What is Node.js?
Node.js, or Node, is a runtime environment for executing JavaScript code outside of a browser. It is ideal for building highly-scalable, data-intensive backend services (APIs) that power your client’s apps (web or mobile apps).
Why learn Node?
Node is great for prototyping and agile development as well as building super fast and highly scalable apps; Companies like Uber and PayPal use Node in production to build applications because it requires fewer people and less code. Plus, Node has the largest ecosystem of open-source library, so you don’t have to build everything from scratch.
A step-by-step, A to Z course
What you’ll get when you sign up for this course:
-
15 hours of HD videos, complete with exercises and solutions
-
A real-world project: you’ll build the back-end for a video rental application, not a dummy to-do app!
-
No more wasted time on lengthy courses or out-of-date tutorials
-
Up-to-date and practical information and solutions (no fluff!)
-
The opportunity to learn at your own pace – lifetime access – so take your time if you prefer
-
Expert tips to become a Node rockstar
-
The best practices and common pitfalls to avoid
-
Watch on any device, online or offline – mobile friendly and downloadable lessons
-
Certificate of completion to present to your employer
You’ll learn to:
-
Confidently build RESTful services (APIs) using Node.js, Express.js, and MongoDB
-
Employ the best practices for Node.js
-
Avoid common mistakes
What we’ll cover:
-
Node module system
-
Node Package Manager (NPM)
-
Asynchronous JavaScript
-
Useful ES6+ features
-
Implementing CRUD operations
-
Storing complex data in MongoDB
-
Data Validation
-
Authentication and authorization
-
Handling and logging errors the right way
-
Unit and integration testing
-
Test-driven development (TDD)
-
Deployment
This course is for you if:
You’re a back-end developer who is used to working with frameworks like ASP.NET, Rails, Django, etc. You want to add Node.js to your toolbox.
You’re a front-end developer and want to transition to full-stack development.
You’ve tried other Node.js tutorials and found them to be too slow, out-of-date, and boring!
Having Node.js on your resume helps you find more jobs and make more money.
And here is what other students say:
“Absolutely the best! Highly recommended if you want to get started on Node.js from zero. I have learned what Node is and what it can do. Truly comprehensive. Perfect rating! Mosh knows his stuff and he deserves your support. On a side note, my current company uses Mosh’s courses as a huge resource and reference when training / refreshing knowledge. I just want to say thank you! Please don’t stop teaching. You were born with the talent to teach.” -Eugene John Arellano
“Mosh is one of the top 3 instructors for modern web development. He explains difficult concepts with ease. I recommend all of his courses because of the amount of detail and his style of teaching.” -Warren Isaac
“What I like most about the course is Mosh’s methodology and the way how he explains the things. Very well structured course with high quality of presentation as well.” -Omar Amrani
Who is your instructor?
Hi! My name is Mosh Hamedani and I help ambitious developers take their coding skills to the next level. I’m a software engineer with more than 15 years of experience and I’ve taught over 200,000 students through my online courses. My YouTube channel, Programming with Mosh, has been watched more than 6M times. My students describe my teaching as clear, concise, and fun, without any fluff.
Do you want to become a Node rockstar? Enroll in the course and get started.
Course Curriculum
Chapter 1: Getting Started
Lecture 1: Welcome
Lecture 2: What is Node
Lecture 3: Node Architecture
Lecture 4: How Node Works
Lecture 5: Installing Node
Lecture 6: Your First Node Program
Lecture 7: Course Structure
Lecture 8: Recap
Lecture 9: Asking Questions
Chapter 2: Node Module System
Lecture 1: Introduction
Lecture 2: Global Object
Lecture 3: Modules
Lecture 4: Creating a Module
Lecture 5: Loading a Module
Lecture 6: Module Wrapper Function
Lecture 7: Path Module
Lecture 8: OS Module
Lecture 9: File System Module
Lecture 10: Events Module
Lecture 11: Event Arguments
Lecture 12: Extending Event Emitter
Lecture 13: HTTP Module
Lecture 14: Recap
Chapter 3: Node Package Manager
Lecture 1: Introduction
Lecture 2: Package.json
Lecture 3: Installing a Node Package
Lecture 4: Using a Package
Lecture 5: Package Dependencies
Lecture 6: NPM Packages and Source Control
Lecture 7: Semantic Versioning
Lecture 8: Listing the Installed Packages
Lecture 9: Viewing Registry Info for a Package
Lecture 10: Installing a Specific Version of a Package
Lecture 11: Updating Local Packages
Lecture 12: DevDependencies
Lecture 13: Uninstalling a Package
Lecture 14: Working with Global Packages
Lecture 15: Publishing a Package
Lecture 16: Updating a Published Package
Lecture 17: Recap
Chapter 4: Building RESTful API's Using Express
Lecture 1: Introduction
Lecture 2: RESTful Services
Lecture 3: Introducing Express
Lecture 4: Building Your First Web Server
Lecture 5: Nodemon
Lecture 6: Environment Variables
Lecture 7: Route Parameters
Lecture 8: Handling HTTP GET Requests
Lecture 9: Handling HTTP POST Requests
Lecture 10: Calling Endpoints Using Postman
Lecture 11: Input Validation
Lecture 12: Handling HTTP PUT Requests
Lecture 13: Handling HTTP Delete Requests
Lecture 14: Project- Build the Genres API
Lecture 15: Recap
Chapter 5: Express- Advanced Topics
Lecture 1: Introducion
Lecture 2: MIddleware
Lecture 3: Creating Custom Middleware
Lecture 4: Built-In Middleware
Lecture 5: Third-party Middleware
Lecture 6: Environments
Lecture 7: Configuration
Lecture 8: Debugging
Lecture 9: Templating Engines
Lecture 10: Database Integration
Lecture 11: Authentication
Lecture 12: Structuring Express Applications
Lecture 13: Project- Restructure the App
Lecture 14: Recap
Chapter 6: Asynchronous JavaScript
Lecture 1: Synchronous Vs. Asynchronous Code
Lecture 2: Patterns For Dealing With Asynchronous Code
Lecture 3: Callbacks
Lecture 4: Callback Hell
Lecture 5: Named Functions to Rescue
Lecture 6: Promises
Lecture 7: Replacing Callbacks with Promises
Lecture 8: Consuming Promises
Lecture 9: Creating Settled Promises
Lecture 10: Running Parallel Promises
Lecture 11: Async and Await
Lecture 12: Exercise
Chapter 7: CRUD Operations Using MongoDB
Lecture 1: Introducing MongoDB
Lecture 2: Installing MongoDB on Mac
Lecture 3: Installing MongoDB on Windows
Lecture 4: Connecting to MongoDB
Lecture 5: Schemas
Lecture 6: Models
Lecture 7: Saving a Document
Lecture 8: Querying Documents
Lecture 9: Comparison Query Operators
Lecture 10: Logical Query Operators
Lecture 11: Regular Expressions
Lecture 12: Counting
Instructors
-
Mosh Hamedani
Helping Learners Build Successful Coding Careers
Rating Distribution
- 1 stars: 62 votes
- 2 stars: 95 votes
- 3 stars: 684 votes
- 4 stars: 3556 votes
- 5 stars: 7800 votes
Frequently Asked Questions
How long do I have access to the course materials?
You can view and review the lecture materials indefinitely, like an on-demand channel.
Can I take my courses with me wherever I go?
Definitely! If you have an internet connection, courses on Udemy are available on any device at any time. If you don’t have an internet connection, some instructors also let their students download course lectures. That’s up to the instructor though, so make sure you get on their good side!
You may also like
- Top 10 Video Editing Courses to Learn in November 2024
- Top 10 Music Production Courses to Learn in November 2024
- Top 10 Animation Courses to Learn in November 2024
- Top 10 Digital Illustration Courses to Learn in November 2024
- Top 10 Renewable Energy Courses to Learn in November 2024
- Top 10 Sustainable Living Courses to Learn in November 2024
- Top 10 Ethical AI Courses to Learn in November 2024
- Top 10 Cybersecurity Fundamentals Courses to Learn in November 2024
- Top 10 Smart Home Technology Courses to Learn in November 2024
- Top 10 Holistic Health Courses to Learn in November 2024
- Top 10 Nutrition And Diet Planning Courses to Learn in November 2024
- Top 10 Yoga Instruction Courses to Learn in November 2024
- Top 10 Stress Management Courses to Learn in November 2024
- Top 10 Mindfulness Meditation Courses to Learn in November 2024
- Top 10 Life Coaching Courses to Learn in November 2024
- Top 10 Career Development Courses to Learn in November 2024
- Top 10 Relationship Building Courses to Learn in November 2024
- Top 10 Parenting Skills Courses to Learn in November 2024
- Top 10 Home Improvement Courses to Learn in November 2024
- Top 10 Gardening Courses to Learn in November 2024