This repository has been archived by the owner on Oct 29, 2018. It is now read-only.
forked from sridhar47/Modules
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmodules.json
75 lines (71 loc) · 2.47 KB
/
modules.json
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
{
"element":{
"classname" :"modules",
"title" :"Mo",
"name" :"Module",
"description":"Ousider & Generic",
"package":"mods"
},
"items" :[
{
"name" :"jsx",
"authors" :["Eduardo Ottaviani"],
"description" :"jsx module let you to describe programmaticaly jsx templates with the advantage of virtual dom diff.",
"section" :"DOM Template"
},
{
"name" :"stream",
"authors" :["Eduardo Ottaviani"],
"description" :"A function that debounce dom events and returns them as a list of events to be mapped.",
"section" :"DOM Events"
},
{
"name" :"reduxtore",
"authors" :["Eduardo Ottaviani"],
"description" :"A Redux Store AMD implementation.",
"section" :"Persistence"
},
{
"name" :"throwable",
"authors" :["Eduardo Ottaviani"],
"description" :"This modules helps you to handling exceptions and keeping all the modules working if some other module breaks. Also, helps you to subscribe to custom events to handle common errors outside your module logic.",
"section" :"Error Handling"
},
{
"name" :"logger",
"authors" :["Eduardo Ottaviani"],
"description" :"Logger module helps you to visualize all the subscriptions and publishing events and also to easily track your Jails application mistakes from Jails workflow perspective.",
"section" :"Debug"
},
{
"name" :"routr",
"authors":["Eduardo Ottaviani"],
"description" :"An improved Router for your applications, simple calls, more faster then Router and standalone. It was created after observations on the regular Router usage, so has the same advantages but and better written.",
"section" :"URL"
},
{
"name" :"storage",
"authors" :["Eduardo Ottaviani"],
"description" :"This AMD module has the simplest way to use the localStorage and sessionStorage objects, very useful to persist data on client side.",
"section" :"Persistence"
},
{
"name" :"cache",
"authors" :["Eduardo Ottaviani"],
"description" :"A simple module for caching data, it can be used to save some url of ajax requests for instance.",
"section" :"Persistence"
},
{
"name" :"cookies",
"authors" :["Leandro Vieira Pinho", "Eduardo Ottaviani"],
"description" :"Just a simple cookie wrapper to deal with document.cookie property.",
"section" :"Persistence"
},
{
"name" :"litestore",
"authors" :["Eduardo Ottaviani"],
"description" :"A very light and simple implementation of a store using one directional flow.",
"section" :"Persistence"
}
]
}