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…
Tag: web development
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…
I would like to perform some basic checks for email addresses my users are entering. Sometimes they are simply making a typo in the domain part of the email. Typically…
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…
Recently we came across the strange issue with InvalidTag on one of our ColdFusion websites. In the admin part of the page, we have a simple TextArea field to enter contents of…
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…