Skip to content

mizmaar3/gulp-automation-boilerplate

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

gulp-automation-boilerplate

Project tested with node v 6.2.2

A very basic boilerplate to start your Javascript project ideally with ES6 and Less css preprocessor.

  • The aim of this package is to start basic web project which usually have JS and css (less css) files, build them for release by compiling ES2015 code and concatenate js and css files into single bundle.

  • Bundling done with simple commands using Gulp which is famous build system to automate build process.

Install

First, clone the repo via git:

git clone https://github.com/mizmaar3/gulp-automation-boilerplate your-project-name

And then install dependencies.

$ cd your-project-name && npm install

Build

Run this command to build and bundle the project.

$ npm run build

or simple run

$ gulp

inside your project folder

Start Server

To start local server please run

$ npm run start

and goto http://127.0.0.1:9400 to test if code worked. You should get some text on the page.

DevTools

Toggle Chrome DevTools

  • OS X: Cmd Alt I or F12
  • Linux: Ctrl Shift I or F12
  • Windows: Ctrl Shift I or F12

Example Code Explanation

The JS folder

  • JS folder contains two js files script1.jsx which has an ES6 arrow function and script2.js which have simple javascript function. Both will be compiled with Babel.js using ES2015 presents and minified in single main.js file inside dist folder after building the project.

The LESS folder

  • Less folder contains .less files which will be compiled with gulp-less and concatenated into single file style.css, can be found in dist folder after building project.

About

Simple JS project automation setup to start with

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published