Nodejs Course

Node.js is a free, open source server framework that can run on various platforms (Windows, Linux, Unix, Mac OS X, etc.), and allows you to run JavaScript on the server. It uses asynchronous programming.
- In this course I add tutorials with the things I learn about Node JS from various resources I find on the internet.

What Can Node.js Do?


Node.js logo

References:

- Node.js Full Documentation
- Pure JavaScript Client implementing the MySql protocol
- Node.js w3schools Tutorial

Daily Test with Code Example

HTML
CSS
JavaScript
PHP-MySQL
Which type of <input> creates a color well control for selecting a color value?
type="text" type="color" type="date"
<input type="color" name="get_color" />
Which CSS method rotates the HTML element at a given degree?
scale() translate() rotate()
#some_id:hover {
  transform: rotate(60deg);
  -ms-transform: rotate(60deg);    /* IE 9 */
  -moz-transform: rotate(60deg);   /* Firefox */
}
Click on the function that returns the number with the highest value.
pow() min() max()
var maxn = Math.max(8, 4, 88, 56);
alert(maxn);      // 88
Which function prevent the same file from being included more than once in a page?
include() include_once() require()
include_once("some_file.php");
Node.js Course

Last accessed pages

  1. The Fifth Agreement (17919)
  2. Display UL bullets and OL numbers on the right side (7486)
  3. Add, Change, and Remove Attributes with jQuery (45870)
  4. Select in MySQL, Output results in HTML Table (18793)
  5. Zodiac Signs JavaScript code (10452)

Popular pages this month

  1. PHP Unzipper - Extract Zip, Rar Archives (225)
  2. Courses Web: PHP-MySQL JavaScript Node.js Ajax HTML CSS (167)
  3. SHA1 Encrypt data in JavaScript (127)
  4. Convert XML to JSON in JavaScript (86)
  5. Create simple Website with PHP (84)