-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
90 lines (74 loc) · 3.7 KB
/
index.html
File metadata and controls
90 lines (74 loc) · 3.7 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
<!-- https://github.com/rowanmanning/frame -->
<!DOCTYPE html>
<html lang="en-GB">
<head>
<meta charset="utf-8"/>
<title>Cosy – A library for the lazy developer</title>
<link rel="stylesheet" href="style/main.css" type="text/css" />
<meta name="viewport" content="width=device-width"/>
</head>
<body>
<div class="header">
<div class="grid">
<div class="col-6">
<h1>Cosy (it's lazy)</h1>
</div>
<div class="col-6">
<ul class="navigation right">
<li><a href="https://github.com/getcosy" title="View source on Github">Github</a></li>
</ul>
</div>
</div>
</div>
<div class="content">
<div class="grid">
<ul class="col-6 secret-list inline-list">
<li class="entry">
<h3><a href="https://github.com/getcosy/lang">lang</a></h3>
<p class="description">JavaScript language extensions</p>
<ul class="secret-list block-list">
<li><b>NPM</b><pre>npm install cosy-lang</pre></li>
<!-- <li><b>Bower</b><pre>bower install cosy-lang</pre></li> -->
<li>
<b>Download</b>
<a href="https://github.com/getcosy/lang/tarball/master"><pre>Tar</pre></a>
<a href="https://github.com/getcosy/lang/zipball/master"><pre>Zip</pre></a>
</li>
</ul>
</li>
<li class="entry">
<h3><a href="https://github.com/getcosy/umdcs">umdcs</a></h3>
<p class="description">CoffeeScript UMD Template</p>
<ul class="secret-list block-list">
<li>
<b>Download</b>
<a href="https://github.com/getcosy/umdcs/tarball/master"><pre>Tar</pre></a>
<a href="https://github.com/getcosy/umdcs/zipball/master"><pre>Zip</pre></a>
</li>
</ul>
</li>
</ul>
<div class="col-6">
<h5>What is <strong>Cosy</strong>?</h5>
<p>Cosy is a set of JavaScript tools and libraries inspired by the <a href="http://en.wikipedia.org/wiki/Lisp_%28programming_language%29">LISP</a> and <a href="http://clojure.org/">Clojure</a> programming languages. It aims to help us become <a href="http://www.codinghorror.com/blog/2005/08/how-to-be-lazy-dumb-and-successful.html">lazier developers</a> who write <a href="http://en.wikipedia.org/wiki/Lazy_evaluation">lazier code</a>.</p>
<p>
So far only the <a href="https://github.com/getcosy/lang">cosy-lang</a> library exists which adds many of the language features that the clojure guys enjoy including:
<ol>
<li><a href="http://en.wikipedia.org/wiki/Protocol_%28object-oriented_programming%29">Protocols</a></li>
<li>Sequences (lazy & asynchronous)</li>
<li>Argument length dispatch</li>
<li><a href="http://en.wikipedia.org/wiki/Tail_call">Tail recursion</a></li>
<li>Object Identity</li>
<li>Object Metadata</li>
</ol>
</p>
<p>
It's still early days yet, but feel free to contribute in any way you can.
</p>
<h5 class="pad-top">Who is <strong>Cosy</strong>?</h5>
<p>Cosy is written and maintained by <a href="https://github.com/bahulneel">Bahul Neel Upadhyaya.</a> It was originally created at <a href="http://www.bravenewtalent.com">BraveNewTalent</a> who sponser its continued development.</p>
</div>
</div>
</div>
</body>
</html>