Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question

2 Answers

Express is a web development framework (the intended client is a web browser).

In the application's root directory type node app.js and then open http://localhost:3000 in your browser

share|improve this answer

you can add jade file in the view folder and add the button to it and on click event , give the url to be called if that url matched with the app.get of the server code, do the work and after finishing render it back to the page u want with changes.

for rendering use res.render('index');

u can also pass results with it,

res.render('index',{result:result});

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.