Source

ડાઉનલોડ કરો

સંકલિત CSS અને JavaScript, સ્રોત કોડ મેળવવા માટે બુટસ્ટ્રેપ ડાઉનલોડ કરો અથવા તેને તમારા મનપસંદ પેકેજ મેનેજર જેમ કે npm, RubyGems અને વધુ સાથે શામેલ કરો.

સંકલિત CSS અને JS

તમારા પ્રોજેક્ટમાં સરળતાથી આવવા માટે બુટસ્ટ્રેપ v4.1.3 માટે ઉપયોગ માટે તૈયાર સંકલિત કોડ ડાઉનલોડ કરો , જેમાં શામેલ છે:

  • કમ્પાઇલ અને મિનિફાઇડ CSS બંડલ ( CSS ફાઇલોની સરખામણી જુઓ )
  • સંકલિત અને નાના જાવાસ્ક્રિપ્ટ પ્લગઈનો

આમાં દસ્તાવેજીકરણ, સ્રોત ફાઇલો અથવા કોઈપણ વૈકલ્પિક JavaScript અવલંબન (jQuery અને Popper.js)નો સમાવેશ થતો નથી.

ડાઉનલોડ કરો

સ્રોત ફાઇલો

અમારા સ્ત્રોત Sass, JavaScript અને દસ્તાવેજીકરણ ફાઇલોને ડાઉનલોડ કરીને તમારી પોતાની એસેટ પાઇપલાઇન સાથે બુટસ્ટ્રેપ કમ્પાઇલ કરો. આ વિકલ્પને કેટલાક વધારાના ટૂલિંગની જરૂર છે:

  • તમારા CSSને કમ્પાઇલ કરવા માટે Sass કમ્પાઇલર (Libsass અથવા Ruby Sass સપોર્ટેડ છે).
  • CSS વેન્ડર પ્રીફિક્સિંગ માટે ઑટોપ્રીફિક્સર

જો તમારે બિલ્ડ ટૂલ્સની જરૂર હોય, તો તે બુટસ્ટ્રેપ અને તેના દસ્તાવેજો વિકસાવવા માટે સમાવવામાં આવેલ છે, પરંતુ તે સંભવતઃ તમારા પોતાના હેતુઓ માટે અયોગ્ય છે.

સ્ત્રોત ડાઉનલોડ કરો

jsDelivr

તમારા પ્રોજેક્ટમાં બુટસ્ટ્રેપના કમ્પાઇલ કરેલ CSS અને JSના કેશ્ડ વર્ઝનને પહોંચાડવા માટે jsDelivr સાથે ડાઉનલોડ કરવાનું છોડી દો .

<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js" integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy" crossorigin="anonymous"></script>

If you’re using our compiled JavaScript, don’t forget to include CDN versions of jQuery and Popper.js before it.

<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" crossorigin="anonymous"></script>

Package managers

Pull in Bootstrap’s source files into nearly any project with some of the most popular package managers. No matter the package manager, Bootstrap will require a Sass compiler and Autoprefixer for a setup that matches our official compiled versions.

npm

Install Bootstrap in your Node.js powered apps with the npm package:

npm install bootstrap

require('bootstrap') will load all of Bootstrap’s jQuery plugins onto the jQuery object. The bootstrap module itself does not export anything. You can manually load Bootstrap’s jQuery plugins individually by loading the /js/*.js files under the package’s top-level directory.

Bootstrap’s package.json contains some additional metadata under the following keys:

  • sass - path to Bootstrap’s main Sass source file
  • style - path to Bootstrap’s non-minified CSS that’s been precompiled using the default settings (no customization)

RubyGems

Install Bootstrap in your Ruby apps using Bundler (recommended) and RubyGems by adding the following line to your Gemfile:

gem 'bootstrap', '~> 4.1.3'

Alternatively, if you’re not using Bundler, you can install the gem by running this command:

gem install bootstrap -v 4.1.3

See the gem’s README for further details.

Composer

You can also install and manage Bootstrap’s Sass and JavaScript using Composer:

composer require twbs/bootstrap:4.1.3

NuGet

જો તમે .NET માં વિકાસ કરો છો, તો તમે NuGet નો ઉપયોગ કરીને બુટસ્ટ્રેપના CSS અથવા Sass અને JavaScript ને પણ ઇન્સ્ટોલ અને મેનેજ કરી શકો છો :

Install-Package bootstrap
Install-Package bootstrap.sass