Getting Started

Overview

FrontEnd Starter is a boilerplate kit for easy building modern static web-sites using Gulp.

This starter is delivering with ready-to-use utils, styled components, helpers and much more. Its overview is available in components section.

How to use

Instalation

# Clone the repository
git clone https://github.com/zakandaiev/frontend-starter.git

# Go to the folder
cd frontend-starter

# Install packages
npm i

# Remove the link to the original repository
# - if you use Windows system
Remove-Item .git -Recurse -Force
# - or if you use Unix system
rm -rf .git

Development

# Start development mode with live-server
npm run dev

Building

# Build static files for production
npm run build
# or
npm run prod

# Start server for build preview
npm run preview