-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
223 lines (197 loc) · 7.71 KB
/
index.html
File metadata and controls
223 lines (197 loc) · 7.71 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
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<meta name="viewport" content="width=device-width, user-scalable=no" />
<link rel="stylesheet" href="stylesheets/core.css" media="screen"/>
<link rel="stylesheet" href="stylesheets/mobile.css" media="handheld, only screen and (max-device-width:640px)"/>
<link rel="stylesheet" href="stylesheets/pygment_trac.css"/>
<script type="text/javascript" src="javascripts/modernizr.js"></script>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script type="text/javascript" src="javascripts/headsmart.min.js"></script>
<script type="text/javascript">
$(document).ready(function () {
$('#main_content').headsmart()
})
</script>
<title>ProAct.js</title>
</head>
<body>
<a id="forkme_banner" href="https://github.com/proactjs/proactjs">View on GitHub</a>
<div class="shell">
<header>
<span class="ribbon-outer">
<span class="ribbon-inner">
<h1>ProAct.js</h1>
<h2>Reactive JavaScript</h2>
</span>
</span>
</header>
<section id="navigation">
<img class="navLogo" src="../proact_logo_small.png" />
<ul class="navigation">
<li><a href="/pages/news.html">News</a></li>
<li><a href="/#download">Downloads</a></li>
<li><a href="/#documentation">Documentation</a></li>
<li><a href="/#examples">Examples</a></li>
<li><a href="/#authors-and-contributors">Contribution</a></li>
<li><a href="/#support-or-contact">Contacts</a></li>
<li><a href="https://github.com/proactjs/proactjs" targe="_blank">Github</a></li>
</ul>
</section>
<section id="main_content">
<h3>
<a name="what-is-proactjs" class="anchor" href="#what-is-proactjs">
<span class="octicon octicon-link">
</span>
</a>
What is ProAct.js
</h3>
<p>
First of all, what ProAct.js is not:
<ul>
<li>ProAct.js is not an MVC, MVVM, MV* framework.</li>
<li>ProAct.js is not a plugin for such a framework.</li>
<li>ProAct.js doesn't depend on any other library.</li>
</ul>
</p>
<p>
So what exactly is ProAct.js?
</p>
<p>
<ul>
<li>ProAct.js is a tool for optimizing calculations and defining dependencies between objects.</li>
<li>In a way ProAct.js augments the JavaScript language turning it into reactive language.</li>
<li>ProAct.js is implementation of the Object-oriented approach in the <a href="http://en.wikipedia.org/wiki/Reactive_programming" target="_blank">reactive programming</a>.</li>
<li>Additionally it uses <a href="http://en.wikipedia.org/wiki/Functional_reactive_programming" target="_blank">functional reactive programming</a> ideas to connect the dependency graph created by the reactive objects to the outside world.</li>
<li>ProAct.js can be used as a building block for complex frameworks (like MV* ones). Two-way bindings can be implemented with ease.</li>
</ul>
</p>
<p>
And the name?
</p>
<p>
The name is derived from reACTive PROperties.
ProAct.js turns plain JavaScript object fields in reactive properties, which can depend on each other after all.
</p>
<p>
For more about <a href="pages/reactive.html">reactive programming click here.</a>
</p>
<h3>
<a name="download" class="anchor" href="#download">
<span class="octicon octicon-link">
</span>
</a>
Download
</h3>
<p>
<ul>
<li><a href='https://raw.github.com/proactjs/proactjs/master/dist/js/proact.js'>Development</a></li>
<li><a href='https://raw.github.com/proactjs/proactjs/master/dist/js/proact.min.js'>Production</a></li>
<li>As node.js module: <code>npm install proact.js</code></li>
<li>As bower module: <code>bower install proact.js</code></li>
<li>CDN - <code>cdn.jsdelivr.net/proact.js/1.3.1/proact.min.js</code></li>
</ul>
</p>
<h3>
<a name="documentation" class="anchor" href="#documentation">
<span class="octicon octicon-link">
</span>
</a>
Documentation
</h3>
<p>
<ul>
<li>
<a href="doc/index.html">API documentation</a>
</li>
</ul>
</p>
<h3>
<a name="examples" class="anchor" href="#examples">
<span class="octicon octicon-link">
</span>
</a>
Examples
</h3>
<p>
A list of examples using ProAct.js:
</p>
<p>
<ul>
<li>
<a href="http://jsfiddle.net/meddle/2Wrfq/" target="_blank">Click counter</a>
</li>
<li>
<a href="http://jsfiddle.net/meddle/gtfkx/" target="_blank">Click counter with the ProAct.js DSL</a>
</li>
<li>
<a href="/todomvc" target="_blank">TodoMVC implementation using a ProAct.js based MV* mini framework</a>
</li>
<li>
<a href="http://jsfiddle.net/meddle/7vcmb7ua" target="_blank">Simple html/js one-way bindings implementation.</a>
</li>
</ul>
</p>
<p style="color: red;">
We need more examples here! Please contribute by experimenting with the library!
</p>
<h3>
<a name="articles" class="anchor" href="#articles">
<span class="octicon octicon-link">
</span>
</a>
Articles And Guides
</h3>
<p>
<ul>
<li>
<a href="http://meddle0x53.wordpress.com/2014/11/21/a-simple-htmljs-binding-system-using-reactive-programming-with-proact-js/" target="_blank">Bindings with ProAct.js</a>
</li>
</ul>
</p>
<h3>
<a name="authors-and-contributors" class="anchor" href="#authors-and-contributors">
<span class="octicon octicon-link">
</span>
</a>
Authors and Contributors
</h3>
<p>
<ul>
<li>
Nickolay Tzvetinov (<a href="https://github.com/meddle0x53" class="user-mention">@meddle0x53</a>) - creator of the project.
</li>
</ul>
</p>
<h3>
<a name="support-or-contact" class="anchor" href="#support-or-contact">
<span class="octicon octicon-link">
</span>
</a>
Support or Contact
</h3>
<p>
You can contact me on <a href="mailto:n.tzvetinov@gmail.com">n.tzvetinov@gmail.com</a> if you have any questions.
</p>
<p>
Also you can open an issue for the project <a href="https://github.com/proactjs/proactjs" target="_blank">here</a>.
</p>
<p>
If you want <a href="https://twitter.com/ntzvetinov" target="_blank">follow me on twitter</a> or <a href="http://meddle0x53.wordpress.com/" target="_blank">read my blog</a>.
</p>
</section>
<footer>
<span class="ribbon-outer">
<span class="ribbon-inner">
<p>
<a href="https://github.com/proactjs/proactjs" target="_blank">proactjs</a> - Reactive JavaScript
</p>
</span>
</span>
<span class="octocat"></span>
</footer>
</div>
</body>
</html>