jr-codes / front-end-boilerplate

Boilerplate project for front-end development.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Front-End Boilerplate

Boilerplate project for front-end development built using gulp.

Tools

Setup

1. Install Node

Make sure you have the latest version. Type this in a command prompt (or WebStorm terminal):

node -v

2. Install gulp

npm install -g gulp

3. Install Node modules

Navigate to the project folder before entering this command. Modules are defined in package.json.

npm install

Development

Gulp is used for automating build tasks. Tasks are defined in gulpfile.js.

To get started, type this command:

gulp

Install new development-related modules (e.g., gulp plugins) via npm install --save-dev module-name. Install front-end modules (e.g., jquery) via npm install --save module-name.

Maintenance

Use npm-check-updates for updating dependencies in package.json. Make sure to run npm update any time package.json is updated.

Getting Started Resources

About

Boilerplate project for front-end development.

License:MIT License


Languages

Language:JavaScript 99.5%Language:HTML 0.4%Language:CSS 0.1%