Express set
This will be a quick post on the express set method in express.js which can be used in conjunction with the express get function when it comes to working with application settings.
The app.set method to be specific can be used to set application settings like the view engine to use, or a post number to listen on when starting a main server script. In addition it can be used as an alternative to defining global variables for just about anything that has to be stored and accessed at a later point elsewhere in the app. The app get method as you might know can be used to define middleware to use with get requests, but if it is used with just one argument and given a string value the get method can be used as a way to get rather than set application values.
So then in this post I will be going over a few simple quick examples of the app.set method along with the app.get method when working out an express.js project on top of nodejs.
1 - Express set basic example setting a PORT value for app.listen
When it comes to using the express app.set method as a way to store an application setting I can use any key name that I want, but some names are reserved because they are used by express internally such as ‘view engine’, and ‘env’. So for example if I want to store the port number that I will be listening on as an application setting I can use the app.set method as a way to do just that.
Here I am using the app.set method to set a value for a port to listen on, when it comes to setting the port value the first and foremost value to look for will be an environment variable that will contain a port value to listen on. If that does not work the next place to check will be the first positional argument when the script was called. If all else fails a hard coded value will be used for the post to listen on.
The express app.set method is used in conjunction with the app.get method as a way to get application setting values, however the app.get method has more than one function depending on how it is used. In the above example the app.get method is used to get the port application setting, but it is also used to define what to do for http get requests for the root path.
2 - Express setting view engine
One of the express application settings is the view engine, this is a setting that lets express know what template engine I am using such as ejs. I could get into that topic in depth, but if you want to learn more about this it would be best to check out my posts on using ejs or the pug temperate engines with an express.js project.
|
|
3 - Conclusion
That is it for now when it comes to the app.set method, it time I might come up with some additional use case examples of the app.set method and when I do so I might get around to editing this post again. A real express project might make use of an option parser such as commander, and then that could be used to set all kinds of additional options for a main server script. However I think the first and foremost thing to do is come up with some real project examples to work on in order to real put this little aspect of express to use.