File tree Expand file tree Collapse file tree 1 file changed +2
-65
lines changed Expand file tree Collapse file tree 1 file changed +2
-65
lines changed Original file line number Diff line number Diff line change 1
- # web-generator
2
- Basic web application tools and structure
3
-
4
- #### technologies
5
- 1 ) Jade (HTML template engine)
6
-
7
- 2 ) SASS (.scss)
8
-
9
- 3 ) PostCSS auto prefixer (support for cross browsers)
10
-
11
- ```
12
- .{
13
- transition: all .4s ease;
14
- }
15
- ```
16
- becomes
17
- ```
18
- .{
19
- -webkit-transition:all .4s ease;
20
- -o-transition:all .4s ease;
21
- -moz-transition:all .4s ease;
22
- transition:all .4s ease
23
- }
24
- ```
25
- 4 ) Image optimizer (optimizes images' sizes)
26
-
27
-
28
-
29
- #### packages
30
- ```
31
- - gulp
32
- - del
33
- - gulp-autoprefixer
34
- - gulp-concat
35
- - gulp-connect
36
- - gulp-contrib-copy
37
- - gulp-express
38
- - gulp-image
39
- - gulp-pug(known as Jade)
40
- - gulp-minify-css
41
- - gulp-sass
42
- - gulp-sourcemaps
43
- - gulp-uglify
44
- ```
45
- #### useage
46
-
47
- If you install with npm type
48
-
49
- to see on NPM click <a href =' https://www.npmjs.com/package/web-generator ' target =" _blank " >link</a >
50
-
51
- ` npm install web-generator ` or ` npm i web-generator `
52
-
53
- If you download directly you must install Npm Packages by typing
54
-
55
- ` npm install ` or ` npm i `
56
-
57
- then run Gulp Task Runner
58
-
59
- ` npm start ` or ` gulp `
60
-
61
- and finally visit ` http://localhost:1453 `
62
-
63
- #### output demo
64
- You will see same views when you run the project
65
- [ Output Demo Link] ( http://ozluy.github.io/projects/web-generator/ )
1
+ #### Simple Question Game with Vue.js
2
+ [ Demo] ( https://eplatformcomtr.github.io/vue-ask-question/ )
You can’t perform that action at this time.
0 commit comments