I have an opportunity to develop client websites in various programming languages. Years ago I started with PHP, and I was using Ruby for some time… Later I was working…
Tag: Express
My Express-based Node.js application is in most cases used on the localhost since it is still in early development stage. However, I would like to start using Internet-facing domain name…
As I stated in my previous posts ([1], [2]), I decided to use Sequelize as an ORM for my project. I don’t want to deal with the database connections and…
One of the essential elements of the web application is session management. Without it we are not able to handle shopping carts, we are not able to give our users…
There are various things to be configured in the web application. I just started to test various databases and I wanted to have a place to store my database configuration…
I created the single level menu at first and it was working fine. I also noticed that on almost all pages I’m working with, the menu has more than one level.…
Almost in all of my projects, I have a need to store some application based variables. In some cases, I change them on each request (for example – counters). In…
I don’t want to write another testing tutorial. It will be the only kind-of tutorial because I simply want to write down what I did to introduce tests to my…
In my previous post, I wrote about Handlebars in Express basics. One of my goals was to create the menu which will highlight currently selected page. I don’t want to…
In my first node / express project, I decided to use Handlebars as the view engine. I took a look at various possible engines and I found this one the…