Skip to content

davidkudera/Example-Frontend

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Frontend example

Example of my current frontend workflow

I'm writing code in:

And I'm using:

  • npm for all "building" and some frontend dependencies
  • Bower for some other frontend dependencies
  • Gulp for compiling and building my application
  • Browserify for ability to use require in browser

But I'm not using:

  • Watching packages: PhpStorm watch for changes for me, so I don't need to start some command before developing
  • Node.js server: I'm PHP developer, so I'm using Nginx + php-fpm

Installation

$ git clone git@github.com:Carrooi/Example-Frontend.git
$ cd Example-Frontend
$ npm install .
$ bower install

Build

Install fonts:

$ npm run fonts

Compile js files:

$ npm run compile-js

Compile css files:

$ npm run compile-css

Minify

Minify js files:

$ npm run uglify-js

Minify css files:

$ npm run uglify-css