Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is it safe to use bootstrap 4 since it is in alpha release? [closed]

My website currently uses bootstrap 3. I am going to do a revamp of the same website. If I use bootstrap 4, even though it is still in alpha release, will it cause problems?

If yes, what kind of problems are we talking about?

like image 214
Mehul Tandale Avatar asked Dec 11 '22 18:12

Mehul Tandale


2 Answers

Generally, when a lib isn't in a stable version, means that something in the way you use that code, or all available features it offers, can change, so it's not safe for production because that can break your code.

like image 190
Eduardo Henrique Avatar answered Jan 13 '23 15:01

Eduardo Henrique


Rule of thumb:

Any piece of software not in stable version, final version or release version is prone of having lots of bugs.

Aplha versions are worse, since they can change their behavior or functionalities and haven't reached to the testing part yet.

So it is not safe for a stable production environment.

like image 30
Gusstavv Gil Avatar answered Jan 13 '23 15:01

Gusstavv Gil