Getting Started With Node.Js - Part 1 - Node.Js + SQL Server + Visual Studio Code

preview_player
Показать описание
This video takes you through the very basics of developing a web application using Node.Js and shows you how to build Node.Js applications using a free cross platform IDE - Microsoft Visual Studio Code. It also shows you how you can connect to SQL Server databases using your Node.Js applications.

Platforms you will need installed on your machine to try out the tutorial yourself include:

Рекомендации по теме
Комментарии
Автор

for those having trouble with the 'express', run 'npm install express-generator -g' and then 'express NodeJsExample'

Tropcaliente
Автор

Great tutorial! Update: Change sql.Connection to sql.ConnectionPool. The method name has changed and it will throw error: "sql.Connection is not a constructor"

gerhardlourens
Автор

Thank you boss. It helped a lot to understand the use of callback.

clickgopal
Автор

Ive been stuck on this for days thanks so much!!

LiveLongCandy
Автор

facing problem while running the app.It failed to start the server.
"This site can’t be reached localhost refused to connect."
please help me to solve this problem.

aadeshkamble
Автор

Please help me!!!

Cannot read property 'length' of undefined (index.jade)

kamnee
Автор

Very nicely explained.. Thanks that gives a great insight to the beginners

bharatiyano
Автор

Hi, the index.js code that was automatically generated is different from the video you are showing. The new one is router.get('/', function(req, res, next) and yours is exports.index = function(req, res). Can you help me please, I got error during compilation.

dondicortez
Автор

how can we get 2 or more tables data from database in single function and pass into single view or multiple view
by using this function

mr.mudasir
Автор

Thank you for the tutorial! NodeJS has been all the rage lately, and so far I don't see why. I understand that I don't understand, but it seems very low level to me. It almost looks like a step backwards in programming. In all the other languages I've studied, you can accomplish the same thing you did here with much less code! What am I missing?

mnelson
Автор

How it communicates angular2 with nodejs and sqlserver in post forms??

MeliCastroR
Автор

Hi sir is this package use secure communication between node and SQL server like SSL in web application

e.sharathnarayana
Автор

there was an error sql.connection is not a constructor??

abestwfplayer
Автор

How can I do the same thing with HTML not Jade?

mihailzhelev
Автор

i need above project please share above project please give github url

badeankammarao
Автор

very well explained man !! congrats !!
maybe an example like this but with MONGODB ll be great !
cheers !

HectorSantosatm
Автор

Why nobody use limit offset query in their video?

ArjunSingh-oomh
Автор

After press F5 it generate launch.json file with following content
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
"version": "0.2.0",
"configurations": [
{
"type": "chrome",
"request": "launch",
"name": "Launch Chrome against localhost",
"webRoot": "${workspaceFolder}"
}
]
}


after that if i press F5 again then it doesn't show required o/p.

aadeshkamble