You all must have the following ...For the next sessions
1) https://dev.mysql.com/downloads/mysql/ (5.5.4.3)
2) http://www.mysql.com/products/workbench/ or phpmyadmin
3) node js
4) some html/js editor
---
Node JS Tutorial 1....
We all started from the basics of node...to begin please follow these steps:
1) Download Node JS: https://nodejs.org/
2) OPEN Node JS COMMAND PROMPT
3) Save this piece of code in a file
-------
var http=require('http');
var server=http.createServer(function (request,response){
response.writeHead(200,{"Content-Type":"text/plain"});
response.end("Hello World\n");
});
server.listen(7000);
------
to some directory after saving it as 'app.js'
4) In the command prompt go to the directory where the file is saved via 'cd' or 'cd..'(to get in or out of a directory)
5) then once you are in the directory write 'node app.js'..(this is the name of the file)
6) open browser and type "http://localhost:7000/"
7) It should display 'Hello World'
*Please comment if you face any problems
Nesta página do site você pode assistir ao vídeo on-line Node JS Tutorial 1: Hello World! duração hora minuto segundo em boa qualidade , que foi baixado pelo usuário Mahreen Ahmed 16 Dezembro 2016, compartilhe o link com seus amigos e conhecidos, no youtube este vídeo já foi visto 187 vezes e gostou 1 espectadores. Boa visualização!