Tech Tutorial: Learning Node.js for JavaScript Programming – Episode 05: First Node App Windows

In this video, we walk through creating and executing your first Node.js application on a Windows machine.


Personal Recommendation (unpaid)
Programming and software development are awesome! Being that you are learning along with me, there is a really good chance you can make this a career. Based on my own life experience, let me suggest to you that you go get a Computer Science degree from Neumont College of Computer Science and kick your life into hyper-drive.

visit: https://www.neumont.edu/

Tech Tutorial: Learning Node.js for JavaScript Programming – Episode 04: First Node App MacOS

In this video, we walk through creating and executing your first Node.js application on a MacOS machine.


Personal Recommendation (unpaid)
Programming and software development are awesome! Being that you are learning along with me, there is a really good chance you can make this a career. Based on my own life experience, let me suggest to you that you go get a Computer Science degree from Neumont College of Computer Science and kick your life into hyper-drive.

visit: https://www.neumont.edu/

Tech Tutorial: Learning Node.js for JavaScript Programming – Episode 03: Installing on MacOS

In this video, we walk through the installation of Node.js on a MacOS machine.


Personal Recommendation (unpaid)
Programming and software development are awesome! Being that you are learning along with me, there is a really good chance you can make this a career. Based on my own life experience, let me suggest to you that you go get a Computer Science degree from Neumont College of Computer Science and kick your life into hyper-drive.

visit: https://www.neumont.edu/

Tech Tutorial: Learning Node.js for JavaScript Programming – Episode 02: Installing on Windows

In this video, we walk through the installation of Node.js on a Windows machine.


Personal Recommendation (unpaid)
Programming and software development are awesome! Being that you are learning along with me, there is a really good chance you can make this a career. Based on my own life experience, let me suggest to you that you go get a Computer Science degree from Neumont College of Computer Science and kick your life into hyper-drive.

visit: https://www.neumont.edu/

Tech Tutorial: Learning Node.js for JavaScript Programming – Episode 01: Introduction to Node

Traditionally, JavaScript has run only in browsers on a user’s computer. With the creation of Google Chrome and the underlying JavaScript execution engine called V8, some open source developers decided to bring JavaScript to servers. These developers took the V8 JavaScript execution environment used by the Chrome browser and build what is known as Node.js that can be installed on servers and computers. Node.js moves JavaScript from being a Browser only programming language to a fully-featured programming language just like Ruby, Python, and other dynamic languages.

Another important aspect of Node.js is that it now makes it possible to build complete web applications using the same programming language on both the front end (in the browser) and on the back end (server). In the past, we had to use JavaScript on the front end and a completely different language on the back end like Java, C#, Ruby, PHP, or Python, Node.js has completely changed web development.

In this technical series, we will be learning how to use Node.js as the JavaScript execution environment on your computer or servers when building software.


Personal Recommendation (unpaid)
Programming and software development are awesome! Being that you are learning along with me, there is a really good chance you can make this a career. Based on my own life experience, let me suggest to you that you go get a Computer Science degree from Neumont College of Computer Science and kick your life into hyper-drive.

visit: https://www.neumont.edu/

Tech Tutorial: Learning Source Management using Git – Complete Playlist

Developers write billions if not hundreds of billions of lines of code each year. With that much source code being written each year come some pretty difficult challenges keeping that source control up-to-date, relevant, and safe as it is modified and changed by teams of developers. This is why source management, also known as source control, is so extremely important in the software development lifecycle.

In this technical tutorial series, we learn about source management/control and the tools that exist to make this task manageable. We focus specifically on a tool called Git, which has become one of the most used source management tools on the planet. We also learn about GitHub, a cloud-based service that provides developers a place to store their course code in what are called remote repositories.