I'm new to Node. Most of my server consists of require statements, middleware and things like
app.get('/page.html', function (req, res, next){
res.render("page.html");
});
How do I trigger a function from a button click on my web page? Does the entire server script run on each connection, like from the require statements to the end?
Triggering an action on click is something that front end usually needs to initiate. You would fire an Ajax request to one of your backend routes. Let's day you have a route like
There are three functions in there. Express will hold on to them, save refs to them somewhere.
When a request comes in, when it matches the
/my-action
, it will call the first function. And each time the request matches the url, this function will get called.The second function will only get called when the db call is successful, the third one when db fails.
So on each request, only a few predefined functions will run. And you can even save some state between requests, like logging successful calls.
I hope this makes sense, because my thumbs hurt now :-)