https://github.com/amruthpillai/webdev-starter
A web development project template to jump-start your projects without having to scaffold the basic libraries.
https://github.com/amruthpillai/webdev-starter
Last synced: 6 months ago
JSON representation
A web development project template to jump-start your projects without having to scaffold the basic libraries.
- Host: GitHub
- URL: https://github.com/amruthpillai/webdev-starter
- Owner: AmruthPillai
- Created: 2017-06-11T07:41:39.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-06-11T08:44:15.000Z (over 8 years ago)
- Last Synced: 2024-05-02T05:37:21.899Z (over 1 year ago)
- Language: JavaScript
- Size: 4.88 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Web Development - Starter
A web development template to jump-start your projects without having to scaffold the basic libraries necessary to begin.## Introduction
I *just* learnt how to use gulp as a task runner and how to scaffold libraries, but just to begin my basic project, it took me so long to get the gulpfile just right. So I created this repository for the same reason, so that it helps anyone else out there who's starting a new project, to jump-start their development and not waste time in bootstrapping the basic necessities.## Features
* jQuery, Tether & Bootstrap *(from node_modules)*
* Sass/SCSS Support & Minification
* Javascript Minification
* HTML Minification
* Image Optimization## Usage
Before starting, make sure your have the latest version of Node/NPM installed on your system, which can be found here: https://nodejs.org/Once Node/NPM is installed, you'll need to install the gulp task runner globally on your system: `npm install gulp -g`
Now, just clone the repository into your own project folder, and run the `npm i` command:
```
git clone https://github.com/AmruthPillai/WebDev-Starter.git
cd
npm install
```To scaffold the files and run the server, just use `gulp`.
To clean/delete your app folder, you can use `gulp clean`.