Friday, February 4, 2022

3 Ways To install Bootstrap in Rocky Linux 8

 in This Tutorial you will Learn " 3 Ways To install Bootstrap in Rocky Linux 8.

Bootstrap is a free and open-source project available on Github developed to provide a front-end web framework. It keeps supported and developed by a large community of developers across the world. Bootstrap helps or provide a platform to web developers for creating highly responsive and interactive web applications.
_________________________________________________________________________________________
Server - Os:  Rocky Linux 8.5  64Bit      | IP -192.168.1.60        |Hostname - server.yourdomain.com
_________________________________________________________________________________________
cat /etc/system-release ; sestatus ; dnf groupinstall "Development Tools" -y ; dnf module enable nodejs:14 -y ; dnf install nodejs npm -y ; node --version ; npm --version

Method - 1
git clone https://github.com/twbs/bootstrap.git
npm install bootstrap


Method - 2
curl -sL https://dl.yarnpkg.com/rpm/yarn.repo | sudo tee /etc/yum.repos.d/yarn.repo
curl -o- -L https://yarnpkg.com/install.sh | bash
source ~/.bashrc
yarn -v
yarn add bootstrap
yarn install bootstrap

Method - 3
dnf install php-cli php-json php-zip -y
curl -sS https://getcomposer.org/installer | php ; mv composer.phar /usr/local/bin/composer
chmod +x /usr/local/bin/composer ; source ~/.bashrc ; composer -v
composer require twbs/bootstrap

Method - 4
npm install -g bower
bower install bootstrap --allow-root
__________________________________________________________________________________________

No comments:

Post a Comment