NodeJS MongoDB Express Beginner to Intermediate JavaScript
NodeJS MongoDB Express Beginner to Intermediate JavaScript, available at $64.99, has an average rating of 4.45, with 105 lectures, based on 22 reviews, and has 281 subscribers.
You will learn about Learn to build apps with NodeJS Express, MongoDB How to apply JavaScript NodeJS to create applications Create command-line apps How to install and setup NodeJS How to Connect to a MongoDB with Node How to Create a MongoDB Fundamentals of JavaScript This course is ideal for individuals who are Anyone who wants to learn more about NodeJS or JavaScript Developers or Web Developers It is particularly useful for Anyone who wants to learn more about NodeJS or JavaScript Developers or Web Developers.
Enroll now: NodeJS MongoDB Express Beginner to Intermediate JavaScript
Summary
Title: NodeJS MongoDB Express Beginner to Intermediate JavaScript
Price: $64.99
Average Rating: 4.45
Number of Lectures: 105
Number of Published Lectures: 105
Number of Curriculum Items: 105
Number of Published Curriculum Objects: 105
Original Price: $199.99
Quality Status: approved
Status: Live
What You Will Learn
- Learn to build apps with NodeJS Express, MongoDB
- How to apply JavaScript NodeJS to create applications
- Create command-line apps
- How to install and setup NodeJS
- How to Connect to a MongoDB with Node
- How to Create a MongoDB
- Fundamentals of JavaScript
Who Should Attend
- Anyone who wants to learn more about NodeJS
- JavaScript Developers
- Web Developers
Target Audiences
- Anyone who wants to learn more about NodeJS
- JavaScript Developers
- Web Developers
NodeJS is built for performance. NodeJS allows you to build complex and powerful application quickly and easily writing JavaScript code. NodeJS allows you to use JavaScript for not only web applications with the flexibility for a wide range of different purposes. Node brings JavaScript to the server, using Googles V8 engine.
Enroll now to get instant access to:
-
13.5+ hours of premium lessons
-
128 page downloadable workbook Guide source code, tips, resources and challenges
-
Premium instructor support to help you learn
-
Lifetime access to course updates
Top Reasons for using Node.JS
-
In Demand Skillset – used by popular and large businesses
-
NodeJS is written in JavaScript which makes the transition to Node take less time if you are already familiar with JavaScript.
-
Perfect solution for a full stack developer dealing with backend and databases
-
JavaScript is easy to start with a write code and run code within your own computer
-
Easily to develop locally
-
Open Source with an active community and support
-
Node Package Manager can allow you to create complex applications using existing modules, NPM has a massive number of packages.
-
Node is well supported, large size community and many forms and groups to share code and get help
-
Can be used to build micro services
Final Project in Section #6
Creating a fully functional node application, that uses Express to run a web application. Connect to a MongoDB and using Node allow the frontend web application to access the Database items, full CRUD interaction.
-
Create a web application using Express – output html file from public folder
-
Setup a MongoDB in the cloud prep to connect using NodeJS
-
Create and test insert into the database
-
Setup Frontend web application
-
Add DOM event listeners to trigger requests
-
Generate visual response as HTML from the Node response object
-
Update and create interactive list of database content CRUD
-
Add HTML updates to send requests to database.
Create (POST)
Read (GET)
Update (PUT)
Delete (DELETE)
#1 Introduction to Installing and Setup of Node
This section is a fast paced quick intro to NodeJS, and how you start using NodeJS. We discuss what NodeJS is and that it is not a programming language like JavaScript is but an interpreter and Environment for JavaScript.
Node is a lightweight framework developed on Chrome’s V8 engine that can be used for largeScale application development. It’s scalable because the server can respond in a non-blocking way.
Process object which is a global that provides information, and control over, the current Node.js process. Because its global it is always available to Node.js applications without using require()
npm registry contains packages, many of which are also Node modules, or contain Node module
-
Demo how to setup your development environment setting up Editor
-
Visual Studio Code as an Editor with ready terminal
-
Creating your first Node File and running the code
-
How Node Works and examples of simple node syntax
-
Where you can find out more about Node with more examples.
-
How to debug and output content into the terminal various command line and console outputs
-
NodeJS programming language environment REPL Read Evaluate Print Loop
-
Examples of Node
-
Process Object – with examples
-
What Node Packages and NPM
#2 JavaScript Fundamentals quick review of JavaScript Coding
Explore the fundamentals of JavaScript and writing JavaScript code within the Node. Loaded with examples about the basics of coding JavaScript. Back to the basics of JavaScript code . Because node uses JavaScript code this section will provide a refresher and quick overview of JavaScript. Designed to cover the core JavaScript required for the upcoming sections and writing Node.
-
Variables and the Data Types. How to declare variables and examples of different Data Types.
-
Adding Comments to code
-
How to create Objects and Array
-
What JavaScript Functions are and how they work
-
Advanced Functions Immediately invoked Function Expression IIFE, Arrow format for functions, JavaScript Closure example
-
Different JavaScript operators and examples
-
Use of conditions for logic, turthy and falsey. How to use the Ternary Operator.
-
Examples of logic switch statement, and condition statement
-
JavaScript loop Structures For Loop, While Loop, DO-While Loop with code examples
-
Use of Objects and objects with methods.
-
JavaScript Arrays, adding, updating and removing items from an array. lots of commonly used useful array methods for array manipulation.
-
Array and Object Values, iterating through the contents of each.
-
Use of Template literals to set string values
-
Math and Data Method examples, generating random numbers and dates in JavaScript
-
Global object in Node with the use of timeout
-
Event Queue and Asynchronous operations with JavaScript
-
Examples of JavaScript Node Timer module
-
How to Construct promises and Resolve and Reject Promises
-
Debugging – use of Try, Catch, Finally which are used to handle exceptions in the JavaScript
-
JavaScript Async and Await examples and how the order of output on promise completion.
#3 JavaScript Asynchronous programming
Asynchrony, in computer programming, refers to the occurrence of events independent of the main program flow and ways to deal with such events. How to add callbacks that run once a stack is complete.
Covering Input Output which accesses anything outside the application. Once the application is started it will be loaded into the machine memory.
Coding Examples, and practice code outputting into the console when ready
Event Driven programming which makes Node.js fairly fast compared to other similar technologies. Once the application starts it initiates its variables, declares its functions and then waits for the event to occur.
The two types of API functions in Node.js, Asynchronous, non-blocking functions and Synchronous, blocking functions.
The differences difference between blocking and non-blocking calls in Node.js.
Blocking occurs when the execution of additional JavaScript in the Node.js process must wait until a non-JavaScript operation completes. The event loop is unable to continue running JavaScript while a blocking operation is occurring. All the IO methods in node.js provide asynchronous versions, which are non-blocking.
Node keeps an event loop, which monitors when a task gets completed, which would then fire the corresponding events. Node.js overcomes the problem of blocking of I/O operations by using the event loop instead of threads.
Recursive functions, Function that calls itself is called a recursive function – must have a condition to break the loop.
The EventEmitter module makes possible the communication and interaction between objects in Node. EventEmitter provides properties like on and emit. The on property is used to bind a function with the event and emit property is used to fire an event.
-
NodeJS works on the Google v8 environment utilizing JavaScript as its scripting language.
-
How a callback works, Callback added to the background will run once stack is complete
-
Use of setTimeout and how it works in the queue.
-
Callback example Create a function that returns the results from another function
-
Event Loop with an Example of a Recursive Function
-
The three states of promises
-
How to create promises and more promises examples
-
Node process object
-
Node Event EventEmitter
-
how to setup events and trigger emit of events
#4 Node Modules
Each module in NodeJS has its own context and cannot interfere with other modules. Modules are like libraries that you can include into your application. Node.js has a set of built-in modules which you can use without any further installation like http, fs, path, and url.
You can create your own modules, and easily include them in your applications. Save them locally and use within your node application as needed. Perfect to separate functionality for your application. To make properties and methods available outside the module file use the keyword exports.
NPM hosts thousands of third party modules, free packages to download and use. A package in Node.js contains all the files you need for a module.
Debugging – The try…catch statement marks a block of statements to try and specifies a response should an exception be thrown.
-
How you can create your own module locally
-
Commonly used builtin modules like http, fs, path and url
-
Using FS module to update file contents, delete files, create new files
-
Getting file information including file size with fs.stat()
-
Use of node package manager NPM explore some popular node packages.
-
Use of package.json – adding and removing packages
-
Node Package Manager Module lodash
-
Node Buffers how to copy and slice buffer contents
-
Debugging node use of Throw, try and catch
#5 Node Web Application with Express
Express is a minimal and flexible Node.js web application framework that provides a robust set of features for web and mobile applications. Explore how to setup a web application quickly with Express.
The arguments which are available to an Express JS route handler function are request (request Object), response (response Object) and optional Next which can pass control to one of the subsequent route handlers.
-
How to setup express and output html into a localhost webpage
-
How to Serve files from a static directory using Express
-
Values that can be used in route filtering, pattern match and reg exp
-
Route parameters with req.params
-
Express Route with full CRUD Create Read Update Delete Methods
-
Returning JSON response
-
Use of bodyparser
-
Sending data from a frontend form to node express to output into the terminal
-
Returning a JSON response to the frontend from a frontend request
#6 MongoDB with Frontend web page interaction using Node and Express
The official MongoDB Node. js driver allows Node. js applications to connect to MongoDB and work with data. The driver features an asynchronous API which allows you to access method return values through Promises or specify callbacks to access them when communicating with MongoDB.
-
How to setup a cloud base mongo Database to use in practice development
-
Connecting to a mongoDB
-
Use of mongoDB client in Node
-
Checking a connection to the database
-
How to connect to a MongoDB and select the collections, create collections
-
How to output database collections to the frontend using Express and Node.
Creating a fully functional node application that uses Express to run a web application. Connect to a MongoDB and using Node allow the frontend web application to access the Database items, full CRUD interaction.
Course Curriculum
Chapter 1: Introduction NodeJS MongoDB Express Beginner to Intermediate JavaScript
Lecture 1: Introduction to NodeJS MongoDB Express Beginner to Intermediate Course
Lecture 2: Resource Guide for Course Source Code
Lecture 3: NodeJS quiz
Chapter 2: Introduction to Installing and Setup of Node
Lecture 1: Section Introduction to Installing and Setup of Node
Lecture 2: What is Node Setup Dev Environment
Lecture 3: Visual Studio Code Terminal Ready
Lecture 4: Create a Node file and Run it
Lecture 5: What is Node and how it Works
Lecture 6: NodeJS resources
Lecture 7: Working with Node JS
Lecture 8: Node JS REPL
Lecture 9: Common Node Examples
Lecture 10: Node Process Object
Lecture 11: Use Node Packages NodeMon
Lecture 12: Command Line and Console
Lecture 13: Section Resources and Source Code
Chapter 3: JavaScript Fundamentals quick review of JavaScript Coding
Lecture 1: JavaScript Fundamentals quick review of JavaScript Coding
Lecture 2: Variables and Data Types
Lecture 3: JavaScript Variables and Data Types
Lecture 4: Arrays Objects Data Types
Lecture 5: Introduction to Javascript Functions
Lecture 6: Javascript Functions Advanced Features
Lecture 7: More Functions Modern Function Examples
Lecture 8: Javascript Closure Example
Lecture 9: Javascript Operators
Lecture 10: Javascript More Operators Examples
Lecture 11: Conditions Truthy and Falsey
Lecture 12: Ternary Operator
Lecture 13: JavaScript Switch Statement
Lecture 14: JavaScript Loop For Do While
Lecture 15: JavaScript Objects
Lecture 16: JavaScript Object Methods
Lecture 17: JavaScript Array Introduction
Lecture 18: JavaScript Update Array
Lecture 19: JavaScript Delete and Add to an Array
Lecture 20: Common JavaScript Array Methods
Lecture 21: More JavaScript Array Methods
Lecture 22: Array Method Update Array
Lecture 23: JavaScript Empty Array Map Method
Lecture 24: Array Iteration and Object Values
Lecture 25: JavaScript Template Literals
Lecture 26: JavaScript Math Method
Lecture 27: JavaScript Date Method
Lecture 28: JavaScript Asynchronous Callback Examples
Lecture 29: JavaScript Node Timers Global
Lecture 30: JavaScript Promises
Lecture 31: JavaScript Try and Catch Debugging
Lecture 32: JavaScript Async and Await
Chapter 4: JavaScript Asynchronous programming
Lecture 1: JavaScript Asynchronous programming
Lecture 2: Callbacks Stack and Queue
Lecture 3: Stack and Queue Examples
Lecture 4: Callback example in JavaScript
Lecture 5: Calls Event Loops Job Function
Lecture 6: Event Loop Example Recursive Function
Lecture 7: Job Queue Event Loop Function Execution
Lecture 8: Call Stack Output Order Examples
Lecture 9: JavaScript Promises
Lecture 10: Node Process Object Terminal Input Output
Lecture 11: Node Event EventEmitter
Lecture 12: Setup Node Events
Chapter 5: Node Modules NPM
Lecture 1: Node Modules NPM
Lecture 2: Node Modules
Lecture 3: Node Modules Types
Lecture 4: Local Node Modules
Lecture 5: Local Node Modules Exports Class
Lecture 6: Core Modules http web Server Setup
Lecture 7: Make a Folder File System
Lecture 8: Node FileSystem Examples
Lecture 9: Update the contents of a file
Lecture 10: Delete files using the file system
Lecture 11: Rename files using Node
Lecture 12: File System Stats
Lecture 13: Reading Files FS module
Lecture 14: File and Folder Paths
Lecture 15: Node Package Package.json Fetch
Lecture 16: Node Package Manager Module
Lecture 17: Node Buffers
Lecture 18: Errors Throw try and Catch
Chapter 6: Node Web Application with Express
Lecture 1: Node Web Application with Express
Lecture 2: Express Setup
Lecture 3: Serving Files with Express Framework
Lecture 4: Express Routing
Lecture 5: Multiple CallBack Functions
Lecture 6: Express Route Handler GET
Lecture 7: Express Route POST
Lecture 8: Express Route Update Delete
Lecture 9: JSON Data POST Values
Lecture 10: Output JSON URL Params
Lecture 11: MiddleWare POST with bodyParser
Lecture 12: Express routes Router
Lecture 13: Express application generator
Chapter 7: MongoDB with Frontend web page interaction using Node and Express
Lecture 1: MongoDB with Frontend web page interaction using Node and Express
Lecture 2: Setup Get Started with MongoDB
Instructors
-
Laurence Svekis
Instructor, GDE, Application Developer
Rating Distribution
- 1 stars: 0 votes
- 2 stars: 0 votes
- 3 stars: 3 votes
- 4 stars: 5 votes
- 5 stars: 14 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
- Digital Marketing Foundation Course
- Google Shopping Ads Digital Marketing Course
- Multi Cloud Infrastructure for beginners
- Master Lead Generation: Grow Subscribers & Sales with Popups
- Complete Copywriting System : write to sell with ease
- Product Positioning Masterclass: Unlock Market Traction
- How to Promote Your Webinar and Get More Attendees?
- Digital Marketing Courses
- Create music with Artificial Intelligence in this new market
- Create CONVERTING UGC Content So Brands Will Pay You More
- Podcast: The top 8 ways to monetize by Podcasting
- TikTok Marketing Mastery: Learn to Grow & Go Viral
- Free Digital Marketing Basics Course in Hindi
- MailChimp Free Mailing Lists: MailChimp Email Marketing
- Automate Digital Marketing & Social Media with Generative AI
- Google Ads MasterClass – All Advanced Features
- Online Course Creator: Create & Sell Online Courses Today!
- Introduction to SEO – Basic Principles of SEO
- Affiliate Marketing For Beginners: Go From Novice To Pro
- Effective Website Planning Made Simple