Skip to content

eplatform/web-generator

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

web-generator

Basic web application tools and structure

technologies

  1. Jade (HTML template engine)

  2. SASS (.scss)

  3. PostCSS auto prefixer (support for cross browsers)

    .{
      transition: all .4s ease;
     }

becomes

    .{
       -webkit-transition:all .4s ease;
       -o-transition:all .4s ease;
       -moz-transition:all .4s ease;
       transition:all .4s ease
     }
  1. Image optimizer (optimizes images' sizes)

packages

- gulp
- del
- gulp-autoprefixer
- gulp-concat
- gulp-connect
- gulp-contrib-copy
- gulp-express
- gulp-image
- gulp-pug(known as Jade)
- gulp-minify-css
- gulp-sass
- gulp-sourcemaps
- gulp-uglify

useage

If you install with npm type

to see on NPM click link

npm install web-generator or npm i web-generator

If you download directly you must install Npm Packages by typing

npm install or npm i

then run Gulp Task Runner

npm start or gulp

and finally visit http://localhost:1453

About

Basic web application template and structure

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 58.0%
  • HTML 23.8%
  • CSS 18.2%