Launchpad is a Bootstrapped, Gulp-powered, Sassified, front end boilerplate that's focused on automated web development. It comes with Browsersync, hot reloading, carousels, animations, icons, and much more. Launchpad is also built on top of Panini for easy HTML partials and templating {{ }}
- Bootstrap 5
- Gulp 4
- Sass
- Swiper.js
- Emergence.js
- Browsersync + hot reloading
- HTML Templating
- Popper.js
- Animate.css
- Boostrap Icons
- Compilation
- Autoprefixing
- Sourcemaps
- Concatenation
- Minification
- Build on top of Bootstrap with included mobile navigation and icons.
- Sass/CSS compilation, minification, and prefixing with Autoprefixer (using the Sass 7-1 folder architecture pattern).
- JavaScript concatenation + minification.
- Built-in BrowserSync Server - this will automatically refresh your page when files are changed. It also live-injects styles when a .SCSS file is saved.
- HTML partials and templating with Panini. Panini is a super simple flat file generator for use with Gulp. It compiles a series of HTML pages using a common layout. These pages can also include HTML partials for better markup organization.
build
task for shipping your project once it's complete.
To use Launchpad, you'll need:
- Node.js | Test: run
node -v
in the terminal - npm | (Node comes with npm installed). Test: run
npm -v
in the terminal - Gulp |
npm install -g gulp
- Clone this repo:
git clone https://github.com/dmoncado/launchpad
- Navigate into the repo directory:
cd launchpad
- Install all node packages:
npm install
orsudo npm install
- Run
gulp dev
- Your site is now viewable at: http://localhost:3000
- Build something great (start from the HTML partials and style with the SCSS partials, go nuts.)
Primary Gulp tasks are:
gulp dev
for general developmentgulp build
for production ready builds — compiles, concatenates, and minifies everything into a folder called/dist
dist/
- compiled filesnode_modules
- front-end dependencies (.gitignore'd)src/
- contains all of your core, working files — static assets, pages, templates, etc.src/assets/
- scss files, JS files, images, and fontssrc/layouts/
- HTML layouts templatessrc/pages/
- site pagessrc/partials/
- HTML Partialsgulpfile.js
- all task definitionspackage.json
- handles the front-end dependencies
Happy Coding </>