Here you can watch various video Tutorials from Youtube about node.js, useful for beginner and intermediate level.
Click on the link to display the video.
- Introduction to Node.js for beginners- In this video tutorial you will learn about: What Node.js Is, Installing Node.js, Using the REPL, NPM - Node Package Manager, How Modules Work, package.json File, Basic Webserver.
17 Short Video Tutorials for Node.js beginners
- Node.js introduction
- Environment setup
- Basic applications
- Package manager npm
- Callbacks function
- Nodejs events
- Error handling
- File stream
- Network programming
- Advance network programming
- Express framework
- Nodejs middleware
- State management
- Express generator
- Nodejs mongodb
- Nodejs mongoose
- Nodejs restful api
Daily Test with Code Example
HTML
CSS
JavaScript
PHP-MySQL
Which tag is used to include external CSS file in web page?
<body> <script> <link><link href="/templ/style.css" rel="stylesheet" type="text/css" />
Which CSS property sets the text size?
font-weight text-decoration font-sizeh2 {
font-size: 1em;
}
Indicate the JavaScript property that can add HTML code into an element.
text value innerHTMLdocument.getElementById("someID").innerHTML = "HTML content";
Click on the function that returns the number of characters of a string in PHP.
count() strlen() stristr()$str = "http://CoursesWeb.net/";
$nr_chr = strlen($str);
echo $nr_chr; // 22