Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What's the difference between bootstrap and bootstrap-sprockets?

I am using bootstrap with Rails.

What's the difference between bootstrap and bootstrap-sprockets? Is sprockets the special version of bootstrap?

like image 534
Adam Lee Avatar asked Dec 27 '15 14:12

Adam Lee


People also ask

What is the difference between Bootstrap and Bootstrap 4?

Bootstrap is the most popular CSS Framework for developing responsive and mobile-first websites. Bootstrap 4 is the newest version of Bootstrap.

What is the difference between Bootstrap and Sass?

Bootstrap is the most popular HTML, CSS, and JS framework for developing responsive, mobile first projects on the web; Sass: Syntactically Awesome Style Sheets. Sass is an extension of CSS3, adding nested rules, variables, mixins, selector inheritance, and more.

What is Bootstrap CSS?

Bootstrap is the most popular CSS Framework for developing responsive and mobile-first websites.

What is Bootstrap Spring Boot?

Bootstrap is the most popular HTML, CSS, and JS framework for developing responsive, mobile first projects on the web. Spring Boot makes it easy to create stand-alone, production-grade Spring based Applications that you can "just run".


1 Answers

The github doc for boostrap-sass explains it:

bootstrap-sprockets and bootstrap should not both be included in application.js.

bootstrap-sprockets provides individual Bootstrap Javascript files (alert.js or dropdown.js, for example), while bootstrap provides a concatenated file containing all Bootstrap Javascripts.

like image 123
Guilherme Avatar answered Oct 17 '22 02:10

Guilherme