-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
176 lines (167 loc) · 8 KB
/
index.html
File metadata and controls
176 lines (167 loc) · 8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta content="IE=edge,chrome=1", http-equiv="X-UA-Compatible" />
<meta content="width=device-width", name="viewport" />
<title>Cash Machine</title>
<link href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css" rel="stylesheet">
<link href="//cdnjs.cloudflare.com/ajax/libs/bootstrap-material-design/0.1.5/css/material.min.css" rel="stylesheet">
<style>
.page-header h1 {
font-weight: bold;
}
.container {
max-width: 992px;
min-width: 372px;
margin: 0 auto;
}
a[class^=mdi-]:hover, a[class^=mdi-]:active, a[class^=mdi-]:focus {
text-decoration: none;
}
a.btn.info {
padding-left: 47px;
}
a.btn.info [class^=mdi-] {
position: absolute;
font-size: 1.5em;
position: absolute;
font-size: 1.5em;
left: 23px;
top: 7px;
}
</style>
</head>
<body>
<div class="container">
<div class="page-header text-center">
<i class="mdi-action-account-balance-wallet icon-material-pink" style="font-size: 50pt;"></i>
<h1>Cash Machine</h1>
<p class="lead">Cash Machine app to try frameworks</p>
<p>
<iframe src="http://ghbtns.com/github-btn.html?user=ButuzGOL&repo=cashmachine&type=watch&count=true"
allowtransparency="true" frameborder="0" scrolling="0" width="110" height="20"></iframe>
<iframe src="http://ghbtns.com/github-btn.html?user=ButuzGOL&repo=cashmachine&type=fork&count=true"
allowtransparency="true" frameborder="0" scrolling="0" width="95" height="20"></iframe>
<a href="https://twitter.com/share" class="twitter-share-button" data-text="Cash Machine app to try frameworks visit">Tweet</a>
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+'://platform.twitter.com/widgets.js';fjs.parentNode.insertBefore(js,fjs);}}(document, 'script', 'twitter-wjs');</script>
</p>
</div>
<div class="row">
<div class="col-lg-6 col-sm-6 col-md-6 desc">
<div class="well">
<p>
In our days there a lot of javascript client and backend side frameworks.
But for best understanding we should do practice, so I created repo to write there the same app "cash machine" using different frameworks.<br>
The app has two sides back and client. On back there is api and on client there is ui.<br>
It's something similar to <a href="http://todomvc.com/">TodoMVC</a>
</p>
<p>
Feel free for <a href="https://github.com/ButuzGOL/cashmachine">contribution</a>
</p>
<h4 class="text-primary">Mockup</h4>
<div class="text-center">
<img src="mockup.png" height="586" width="304">
</div>
</div>
</div>
<div class="col-lg-6 col-sm-6 col-md-6">
<section class="apps">
<div>
<h3>
React <a href="http://facebook.github.io/react/" class="mdi-content-link"></a> + Flux <a href="http://facebook.github.io/flux/" class="mdi-content-link"></a>
</h3>
<p>
Lots of people use React as the V in MVC. Since React makes no assumptions about the rest of your technology stack, it's easy to try it out on a small feature in an existing project.
</p>
<p>
Flux is the application architecture that Facebook uses for building client-side web applications. It complements React's composable view components by utilizing a unidirectional data flow.
</p>
<a href="react/" class="btn btn-info btn-raised info">
<i class="mdi-image-remove-red-eye"></i>
Demo
</a>
<a href="https://github.com/ButuzGOL/cashmachine/tree/master/apps/react" class="btn btn-default btn-raised info">
<i class="mdi-file-cloud-queue"></i>
Source
</a>
</div>
<div>
<h3>
Angular.js <a href="https://angularjs.org/" class="mdi-content-link"></a>
</h3>
<p>
AngularJS lets you extend HTML vocabulary for your application. The resulting environment is extraordinarily expressive, readable, and quick to develop.
</p>
<a href="angular/" class="btn btn-info btn-raised info">
<i class="mdi-image-remove-red-eye"></i>
Demo
</a>
<a href="https://github.com/ButuzGOL/cashmachine/tree/master/apps/angular" class="btn btn-default btn-raised info">
<i class="mdi-file-cloud-queue"></i>
Source
</a>
</div>
<div>
<h3>
Ember.js <a href="http://emberjs.com/" class="mdi-content-link"></a>
</h3>
<p>
Ember is a JavaScript framework for creating ambitious web applications that eliminates boilerplate and provides a standard application architecture.
</p>
<a href="ember/" class="btn btn-info btn-raised info">
<i class="mdi-image-remove-red-eye"></i>
Demo
</a>
<a href="https://github.com/ButuzGOL/cashmachine/tree/master/apps/ember" class="btn btn-default btn-raised info">
<i class="mdi-file-cloud-queue"></i>
Source
</a>
</div>
<div>
<h3>
Marionette.js <a href="http://marionettejs.com/" class="mdi-content-link"></a>
</h3>
<p>Backbone.Marionette is a composite application library for Backbone.js that aims to simplify the construction of large scale JavaScript applications.</p>
<a href="marionette/" class="btn btn-info btn-raised info">
<i class="mdi-image-remove-red-eye"></i>
Demo
</a>
<a href="https://github.com/ButuzGOL/cashmachine/tree/master/apps/marionette" class="btn btn-default btn-raised info">
<i class="mdi-file-cloud-queue"></i>
Source
</a>
</div>
<div>
<h3>
Sails.js <a href="http://sailsjs.org/" class="mdi-content-link"></a>
</h3>
<p>Sails makes it easy to build custom, enterprise-grade Node.js apps. It is designed to emulate the familiar MVC pattern of frameworks like Ruby on Rails, but with support for the requirements of modern apps: data-driven APIs with a scalable, service-oriented architecture. It's especially good for building chat, realtime dashboards, or multiplayer games; but you can use it for any web application project - top to bottom.</p>
<a href="https://github.com/ButuzGOL/cashmachine/tree/master/apps/sails" class="btn btn-default btn-raised info">
<i class="mdi-file-cloud-queue"></i>
Source
</a>
</div>
</section>
<section class="labs">
<h2>Labs</h2>
<div>
<h3>
Express <a href="http://expressjs.com/" class="mdi-content-link"></a> + Chaplin <a href="http://chaplinjs.org/" class="mdi-content-link"></a>
</h3>
<p>
Express is a minimal and flexible Node.js web application framework that provides a robust set of features for web and mobile applications.
</p>
<p>
Chaplin is an architecture for JavaScript applications using the Backbone.js library. Chaplin addresses Backbone’s limitations by providing a lightweight and flexible structure that features well-proven design patterns and best practices.
</p>
<a href="https://github.com/ButuzGOL/cashmachine/tree/master/apps/labs/express-chaplin" class="btn btn-default btn-raised info">
<i class="mdi-file-cloud-queue"></i>
Source
</a>
</div>
</section>
</div>
</div>
</body>
</html>