How to serve static file in express js

Leave a Comment
To serve static files such as images, CSS files, and JavaScript files, we can use built-in middleware function in Express. i.e. express.static we simply need to pass the name of the folder where we have our static files, to the express.static middleware to start serving the files directly. For example, if you keep your images, CSS, and JavaScript files in a folder named public, we can use below code − app.use(express.static('public')); Now, you can load the files that are in the public directory: http://localhost:3000/images/hello.jpg http://localhost:3000/css/hello.css http://localhost:3000/js/hello.js http://localhost:3000/images/hello.png http://localhost:3000/hello.html Express...

Node js with express framework

Leave a Comment
What is express Express is node js web application framework which provide set of feature to develop web and mobile applications. It provides following features. Robust routing Focus on high performance Super-high test coverage HTTP helpers (redirection, caching, etc) View system supporting 14+ template engines Content negotiation Executable for generating applications quickly How to install expressjs $ npm install --save express The...

What is Node package manager

Leave a Comment
After my first tutorials which is How to create server in node js i want to explain what is node package manager. Because after this tutorials we gonna look in how's node module works. So let's start with what is node package manager. Node package manager is online repositories for node.js packages/modules. To install node package and do version management we have to use commands. To check current NPM version on your computer type below command $ npm --version If you running old version than you can update easily by running...

How to create server in node js

Leave a Comment
Hello guy's After working 3 years in node i finally decided to write tutorials on node. When i started node js i also faced so many challenge so i know how to overcome with this challenges. so let's start with first node js tutorial. Today we will start first thing which i did in node js. Node create its own webserver so we will learn today how to create server in node js as your first application in node js. Before we start i hope you...

How to enable mod_rewrite in apache2

Leave a Comment
In Previous tutorials we looked how to mod_rewrite in windows xammp today we are gonna learn how to enable mod_rewrite in apache2. Here is some command which we have to follow. To check whether mod_rewrite is enabled: Look in mods_enabled for a link to the module by running ls /etc/apache2/mods-enabled | grep rewrite If this outputs rewrite.load then the module is enabled. (Note: your path to apache2 may not be /etc/, though it's likely to be.) To enable mod_rewrite if it's not already: To Enable the module we have...

how to enable mod_rewrite in xammp windows

Leave a Comment
When we start learning codeigniter remove index.php form url is biggest challenge for us. There is so many tutorials to remove index.php from url even i also written tutorials for remove index.php from url but there is so less tutorials which tell main steps of enable mod_rewrite in xammp. so let's start with this There is some steps which we have to follow to check mod_rewrite is enable or not in our xammp. lets start with those...

Xammp port 443 already use issue

Leave a Comment
Hello guy's today i am going to show u how to solve already port issue in xammp. Some times when you start xammp you will get this kind of error which is shown in below image Now how to solve this kind of issue so here is the solution follow this steps :D  Here is the solution step-by-step:  Open up httpd-ssl.conf.   Look for the line Listen 443   Change port number to anything you want. I use 4430....
Powered by Blogger.