I am new to nodejs. I want to know how to use express in nodejs.
I have made a server code
var app = require('express').createServer();
app.get('/', function(req, res){
res.send('hello world');
});
app.get('message', function(req, res){
console.log(req);
});
app.listen(3000);
I do not know how to connect it with the client.
Do we need a .js file to be included in on the client side.
I want to make a client side with a connect button and when i click that button the client is connected to the server and the server return is alerted on the page.
Thanks in advance.