Maciej Dobosz
Maciej Dobosz

Reputation: 158

What improvements to do before deploying website?

I am currently working on my first small comercial projects in web development.

Performance is always crucial, so I would like to know what steps should I follow before putting my website on the server to make sure the performance is just the best it can be.

Upvotes: 3

Views: 81

Answers (2)

Shahroze Nawaz
Shahroze Nawaz

Reputation: 589

Well developers take different steps to increase Performance of the website. You can find Ideal solutions for it but not a perfect one. Here is the list of some Ideal steps for boosting Up your Website Performance.

  • Minimize HTTP Requests.
  • Reduce server response time.
  • Enable compression.
  • Enable browser caching.
  • Minify Resources.
  • Optimize images.
  • Optimize CSS Delivery.
  • Prioritize above-the-fold content
  • Reduce the number of plugins you use on your site
  • Reduce redirects

For coding the best thing is create separate files and include them in your index file. Deployment is also the main part you need to see if your hosting is fast and robust enough to make your website up every time.

Upvotes: 0

TomServo
TomServo

Reputation: 7409

I have heard there are some tools which rename all variables in a project to one letter variables and also delete new line characters, so that only the minimum of data is sent via the Internet and that improves performance

That's called "minifying" (making minimum) and can yield significant performance gains. We do that where I work as an automated build step. Definitely take that step. There are numerous tools available for you to use. Google "minify" or "minifier."

Upvotes: 3

Related Questions