Launchpad is a Bootstrapped, Gulp-powered, Sassified, front end boilerplate for static site development and is fully focused on automation.
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 (rejoice).
- Bootstrap 5
- Bootstrap Icons
- Swiper.js
- Emergence.js
- Panini for HTML templating
- Popper.js
- Animate.css
- Gulp.js
- Sass
- Browsersync + hot reloading
- Compilation
- Autoprefixing
- Sourcemaps
- Concatenation
- Minification
- Built on top of Bootstrap with mobile navigation and Bootstrap Icons included.
- SCSS compilation, minification, and prefixing with Autoprefixer (uses the Sass 7-1 folder architecture pattern).
- JavaScript concatenation + minification.
- Built-in BrowserSync Server - this will automatically refresh your page when you save a file. 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. Think SCSS partials in Sass, but with HTML!
- A
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 pre-installed). Test: run
npm -v
in the terminal - Gulp |
npm install -g gulp
- Clone this repo:
git clone https://github.com/derickmoncado/launchpad
- Navigate into the repo directory:
cd launchpad
- Install all node packages:
npm install
orsudo npm install
- Run
gulp dev
- Your site will automatically launch at: http://localhost:3000
- Build something dope (start from the HTML partials and style with the SCSS partials, go nuts.)
Primary Gulp tasks are:
gulp dev
for local developmentgulp build
for production ready builds β compiles, concatenates, and minifies everything into/dist
/dist
contains yourindex.html
, it's totally up to you how you want to serve/host that online for people to visit (I use GitHub Pages).
dist/
- compiled filesnode_modules
- front-end dependencies (these are .gitignore'd by default)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 π </>
Developed by Derick Moncado