spyne 0.19.1 → 0.20.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (129) hide show
  1. package/.eslintrc.js +4 -3
  2. package/.travis.yml +24 -11
  3. package/karma.conf.js +76 -86
  4. package/lib/spyne.esm.js +15 -0
  5. package/lib/spyne.esm.js.map +1 -0
  6. package/lib/spyne.umd.js +9565 -0
  7. package/package.json +47 -27
  8. package/rollup.config.js +26 -0
  9. package/src/spyne/channels/channel-fetch-class.js +39 -43
  10. package/src/spyne/channels/channel-payload-class.js +61 -74
  11. package/src/spyne/channels/channel-proxy.js +25 -26
  12. package/src/spyne/channels/channel.js +141 -149
  13. package/src/spyne/channels/channels-config.js +46 -47
  14. package/src/spyne/channels/channels-map.js +61 -65
  15. package/src/spyne/channels/spyne-channel-lifecycle.js +12 -12
  16. package/src/spyne/channels/spyne-channel-route.js +241 -250
  17. package/src/spyne/channels/spyne-channel-ui.js +213 -75
  18. package/src/spyne/channels/spyne-channel-window.js +157 -157
  19. package/src/spyne/spyne-app.js +32 -19
  20. package/src/spyne/spyne-plugins.js +55 -70
  21. package/src/spyne/spyne.js +23 -23
  22. package/src/spyne/utils/channel-config-validator.js +10 -10
  23. package/src/spyne/utils/channel-fetch-util.js +72 -55
  24. package/src/spyne/utils/channel-payload-filter.js +89 -100
  25. package/src/spyne/utils/deep-merge.js +31 -29
  26. package/src/spyne/utils/frp-tools.js +108 -92
  27. package/src/spyne/utils/gc.js +6 -6
  28. package/src/spyne/utils/mixins/base-core-mixins.js +17 -15
  29. package/src/spyne/utils/mixins/base-streams-mixins.js +9 -9
  30. package/src/spyne/utils/route-channel-updater.js +23 -29
  31. package/src/spyne/utils/safe-clone.js +40 -58
  32. package/src/spyne/utils/sanitize-html.js +35 -0
  33. package/src/spyne/utils/security-policy.js +11 -0
  34. package/src/spyne/utils/spyne-app-properties.js +110 -114
  35. package/src/spyne/utils/spyne-logger.js +4 -11
  36. package/src/spyne/utils/spyne-plugins-methods.js +38 -63
  37. package/src/spyne/utils/spyne-trait.js +33 -33
  38. package/src/spyne/utils/spyne-utils-channel-route-url.js +229 -153
  39. package/src/spyne/utils/spyne-utils-channel-route.js +128 -138
  40. package/src/spyne/utils/spyne-utils-channel-window.js +39 -39
  41. package/src/spyne/utils/viewstream-animations.js +12 -12
  42. package/src/spyne/utils/viewstream-observables.js +45 -45
  43. package/src/spyne/views/dom-element-template.js +111 -114
  44. package/src/spyne/views/dom-element.js +82 -84
  45. package/src/spyne/views/view-stream-broadcaster.js +66 -62
  46. package/src/spyne/views/view-stream-element.js +105 -106
  47. package/src/spyne/views/view-stream-payload.js +25 -27
  48. package/src/spyne/views/view-stream-selector.js +157 -163
  49. package/src/spyne/views/view-stream.js +416 -640
  50. package/src/tests/channels/channel-dom.test.js +15 -15
  51. package/src/tests/channels/channel-fetch.test.js +51 -62
  52. package/src/tests/channels/channel-payload-class.test.js +50 -63
  53. package/src/tests/channels/channel-payload-filter.test.js +133 -193
  54. package/src/tests/channels/channel-route.test.js +102 -112
  55. package/src/tests/channels/channel-stream-item.test.js +19 -19
  56. package/src/tests/channels/channel-ui.test.js +15 -27
  57. package/src/tests/channels/channel-util-dom.test.js +31 -31
  58. package/src/tests/channels/channel.test.js +20 -25
  59. package/src/tests/channels/route-utils.test.js +61 -66
  60. package/src/tests/channels/url-utils.test.js +151 -151
  61. package/src/tests/channels/view-stream-broadcaster.test.js +7 -7
  62. package/src/tests/import.test.js +5 -5
  63. package/src/tests/index.js +6 -7
  64. package/src/tests/index.test.js +6 -8
  65. package/src/tests/mocks/channel-payload-data.js +218 -220
  66. package/src/tests/mocks/enhancer.test.js +5 -5
  67. package/src/tests/mocks/payload-ui.js +87 -90
  68. package/src/tests/mocks/routes-data.js +264 -266
  69. package/src/tests/mocks/spyne-docs.mocks.js +3 -3
  70. package/src/tests/mocks/template-renderer.mocks.js +47 -47
  71. package/src/tests/mocks/utils-data.js +78 -79
  72. package/src/tests/mocks/viewstream-internal-payload.mocks.js +50 -50
  73. package/src/tests/mocks/window-events-arr.js +1 -1
  74. package/src/tests/package-json.spec.test.js +9 -0
  75. package/src/tests/spyne-app.test.js +15 -18
  76. package/src/tests/spyne-plugin.test.js +16 -20
  77. package/src/tests/utils/channel-action-filter.test.js +84 -86
  78. package/src/tests/utils/channel-data-packet-generator.unused.js +62 -86
  79. package/src/tests/utils/channel-fetch-util.test.js +64 -66
  80. package/src/tests/utils/frp-tools.test.js +19 -19
  81. package/src/tests/utils/plugins-methods.test.js +31 -55
  82. package/src/tests/utils/security.test.js +10 -0
  83. package/src/tests/utils/spyne-app-properties.test.js +4 -8
  84. package/src/tests/views/dom-el-selectors.test.js +112 -119
  85. package/src/tests/views/dom-el-template-proxy.test.js +7 -0
  86. package/src/tests/views/dom-el-template.test.js +186 -156
  87. package/src/tests/views/dom-el.test.js +58 -56
  88. package/src/tests/views/view-stream-enhancer-loader.test.js +2 -2
  89. package/src/tests/views/view-stream-enhancer.test.js +11 -11
  90. package/src/tests/views/view-stream.test.js +22 -33
  91. package/webpack.config.js +76 -67
  92. package/docs/-_%20Solves%20equations%20of%20the%20form%20a%20_%20x%20=%20b.html +0 -487
  93. package/docs/DomItem.html +0 -298
  94. package/docs/DomItem_DomItem.html +0 -314
  95. package/docs/ViewStream.html +0 -2249
  96. package/docs/ViewStream_ViewStream.html +0 -503
  97. package/docs/custom/css/jsdoc-viewstream.css +0 -377
  98. package/docs/custom/layout.tmpl +0 -47
  99. package/docs/dom-item.js.html +0 -213
  100. package/docs/fonts/OpenSans-Bold-webfont.eot +0 -0
  101. package/docs/fonts/OpenSans-Bold-webfont.svg +0 -1830
  102. package/docs/fonts/OpenSans-Bold-webfont.woff +0 -0
  103. package/docs/fonts/OpenSans-BoldItalic-webfont.eot +0 -0
  104. package/docs/fonts/OpenSans-BoldItalic-webfont.svg +0 -1830
  105. package/docs/fonts/OpenSans-BoldItalic-webfont.woff +0 -0
  106. package/docs/fonts/OpenSans-Italic-webfont.eot +0 -0
  107. package/docs/fonts/OpenSans-Italic-webfont.svg +0 -1830
  108. package/docs/fonts/OpenSans-Italic-webfont.woff +0 -0
  109. package/docs/fonts/OpenSans-Light-webfont.eot +0 -0
  110. package/docs/fonts/OpenSans-Light-webfont.svg +0 -1831
  111. package/docs/fonts/OpenSans-Light-webfont.woff +0 -0
  112. package/docs/fonts/OpenSans-LightItalic-webfont.eot +0 -0
  113. package/docs/fonts/OpenSans-LightItalic-webfont.svg +0 -1835
  114. package/docs/fonts/OpenSans-LightItalic-webfont.woff +0 -0
  115. package/docs/fonts/OpenSans-Regular-webfont.eot +0 -0
  116. package/docs/fonts/OpenSans-Regular-webfont.svg +0 -1831
  117. package/docs/fonts/OpenSans-Regular-webfont.woff +0 -0
  118. package/docs/global.html +0 -548
  119. package/docs/index-custom.html +0 -79
  120. package/docs/index.html +0 -82
  121. package/docs/jsdoc.config.json +0 -22
  122. package/docs/scripts/linenumber.js +0 -25
  123. package/docs/scripts/prettify/Apache-License-2.0.txt +0 -202
  124. package/docs/scripts/prettify/lang-css.js +0 -2
  125. package/docs/scripts/prettify/prettify.js +0 -28
  126. package/docs/styles/jsdoc-default.css +0 -358
  127. package/docs/styles/prettify-jsdoc.css +0 -111
  128. package/docs/styles/prettify-tomorrow.css +0 -132
  129. package/docs/view-stream.js.html +0 -767
package/docs/global.html DELETED
@@ -1,548 +0,0 @@
1
- <!DOCTYPE html>
2
- <html lang="en">
3
- <head>
4
- <meta charset="utf-8">
5
- <title>JSDoc: Global</title>
6
-
7
- <script src="scripts/prettify/prettify.js"> </script>
8
- <script src="scripts/prettify/lang-css.js"> </script>
9
- <!--[if lt IE 9]>
10
- <script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
11
- <![endif]-->
12
- <link type="text/css" rel="stylesheet" href="styles/prettify-tomorrow.css">
13
- <!--
14
- <link type="text/css" rel="stylesheet" href="styles/jsdoc-default.css">
15
- -->
16
- <link type="text/css" rel="stylesheet" href="custom/css/jsdoc-viewstream.css">
17
-
18
-
19
- </head>
20
-
21
- <body>
22
-
23
- <div id="main">
24
-
25
- <h1 class="page-title">Global</h1>
26
-
27
-
28
-
29
-
30
-
31
-
32
- <section>
33
-
34
- <header>
35
-
36
- <h2></h2>
37
-
38
-
39
- </header>
40
-
41
- <article>
42
- <div class="container-overview">
43
-
44
-
45
-
46
-
47
-
48
-
49
- <dl class="details">
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
- </dl>
83
-
84
-
85
-
86
-
87
- </div>
88
-
89
-
90
-
91
-
92
-
93
-
94
-
95
-
96
-
97
-
98
-
99
-
100
-
101
-
102
-
103
-
104
- <h3 class="subsection-title">Methods</h3>
105
-
106
-
107
-
108
-
109
-
110
-
111
-
112
- <h4 class="name" id="60;p&gt;tag,orthedomelementcanbealargedomchunkthatisgeneratedfromdataandanhtmltemplate.%3Cbr%3E%3Cbr%3EGenerally,theideaistoextendtheViewStreamclassandaddthecustomvalueswithintheconstructorfunction,butallofthevaluescanbepassedasparametersaswell."><span class="type-signature"></span>ThSDFSDF SDF DSreates or references a dom elment; the dom element can be as simple as a &#60;p&gt; tag, or the dom element can be a large dom chunk that is generated from data and an html template.
113
- <br><br>
114
- Generally, the idea is to extend the ViewStream class and add the custom values within the constructor function, but all of the values can be passed as parameters as well.<span class="signature">(options)</span><span class="type-signature"></span></h4>
115
-
116
-
117
-
118
-
119
-
120
-
121
-
122
-
123
-
124
-
125
-
126
-
127
-
128
-
129
- <h5>Parameters:</h5>
130
-
131
-
132
- <table class="params">
133
- <thead>
134
- <tr>
135
-
136
- <th>Name</th>
137
-
138
-
139
- <th>Type</th>
140
-
141
-
142
-
143
-
144
-
145
- <th class="last">Description</th>
146
- </tr>
147
- </thead>
148
-
149
- <tbody>
150
-
151
-
152
- <tr>
153
-
154
- <td class="name"><code>options</code></td>
155
-
156
-
157
- <td class="type">
158
-
159
-
160
- <span class="param-type">object</span>
161
-
162
-
163
-
164
- </td>
165
-
166
-
167
-
168
-
169
-
170
- <td class="description last"><p>This json object takes in parameters to generate or reference the dom element</p></td>
171
- </tr>
172
-
173
-
174
- </tbody>
175
- </table>
176
-
177
-
178
-
179
-
180
-
181
-
182
- <h5 class="subsection-title">Properties:</h5>
183
-
184
-
185
-
186
- <table class="props">
187
- <thead>
188
- <tr>
189
-
190
- <th>Name</th>
191
-
192
-
193
- <th>Type</th>
194
-
195
-
196
-
197
-
198
-
199
- <th class="last">Description</th>
200
- </tr>
201
- </thead>
202
-
203
- <tbody>
204
-
205
-
206
- <tr>
207
-
208
- <td class="name"><code>options.tagName</code></td>
209
-
210
-
211
- <td class="type">
212
-
213
-
214
- <span class="param-type">string</span>
215
-
216
-
217
-
218
- </td>
219
-
220
-
221
-
222
-
223
-
224
- <td class="description last"><p>'div' This can be any dom tag</p></td>
225
- </tr>
226
-
227
-
228
-
229
- <tr>
230
-
231
- <td class="name"><code>options.el</code></td>
232
-
233
-
234
- <td class="type">
235
-
236
-
237
- <span class="param-type">domItem</span>
238
-
239
-
240
-
241
- </td>
242
-
243
-
244
-
245
-
246
-
247
- <td class="description last"><p>undefined, if defined, ViewStream will connect to that element</p></td>
248
- </tr>
249
-
250
-
251
-
252
- <tr>
253
-
254
- <td class="name"><code>options.data</code></td>
255
-
256
-
257
- <td class="type">
258
-
259
-
260
- <span class="param-type">string</span>
261
- |
262
-
263
- <span class="param-type">object</span>
264
-
265
-
266
-
267
- </td>
268
-
269
-
270
-
271
-
272
-
273
- <td class="description last"><p>undefined, // string for innerText or Json object for html template</p></td>
274
- </tr>
275
-
276
-
277
-
278
- <tr>
279
-
280
- <td class="name"><code>options.animateIn</code></td>
281
-
282
-
283
- <td class="type">
284
-
285
-
286
- <span class="param-type">boolean</span>
287
-
288
-
289
-
290
- </td>
291
-
292
-
293
-
294
-
295
-
296
- <td class="description last"><p>false, animates in View</p></td>
297
- </tr>
298
-
299
-
300
-
301
- <tr>
302
-
303
- <td class="name"><code>options.animateInTime</code></td>
304
-
305
-
306
- <td class="type">
307
-
308
-
309
- <span class="param-type">number</span>
310
-
311
-
312
-
313
- </td>
314
-
315
-
316
-
317
-
318
-
319
- <td class="description last"><p>.5</p></td>
320
- </tr>
321
-
322
-
323
-
324
- <tr>
325
-
326
- <td class="name"><code>options.animateOut</code></td>
327
-
328
-
329
- <td class="type">
330
-
331
-
332
- <span class="param-type">boolean</span>
333
-
334
-
335
-
336
- </td>
337
-
338
-
339
-
340
-
341
-
342
- <td class="description last"><p>false, animates in View</p></td>
343
- </tr>
344
-
345
-
346
-
347
- <tr>
348
-
349
- <td class="name"><code>options.animateOutTime</code></td>
350
-
351
-
352
- <td class="type">
353
-
354
-
355
- <span class="param-type">number</span>
356
-
357
-
358
-
359
- </td>
360
-
361
-
362
-
363
-
364
-
365
- <td class="description last"><p>.5</p></td>
366
- </tr>
367
-
368
-
369
-
370
- <tr>
371
-
372
- <td class="name"><code>options.id</code></td>
373
-
374
-
375
- <td class="type">
376
-
377
-
378
- <span class="param-type">string</span>
379
-
380
-
381
-
382
- </td>
383
-
384
-
385
-
386
-
387
-
388
- <td class="description last"><p>undefined, generates a random id if left undefined</p></td>
389
- </tr>
390
-
391
-
392
-
393
- <tr>
394
-
395
- <td class="name"><code>options.debug</code></td>
396
-
397
-
398
- <td class="type">
399
-
400
-
401
- <span class="param-type">boolean</span>
402
-
403
-
404
-
405
- </td>
406
-
407
-
408
-
409
-
410
-
411
- <td class="description last"><p>false</p></td>
412
- </tr>
413
-
414
-
415
-
416
- <tr>
417
-
418
- <td class="name"><code>options.tmpl</code></td>
419
-
420
-
421
- <td class="type">
422
-
423
-
424
- <span class="param-type">tmpl</span>
425
-
426
-
427
-
428
- </td>
429
-
430
-
431
-
432
-
433
-
434
- <td class="description last"><p>undefined, // html template</p></td>
435
- </tr>
436
-
437
-
438
- </tbody>
439
- </table>
440
-
441
-
442
-
443
-
444
- <dl class="details">
445
-
446
-
447
-
448
-
449
-
450
-
451
-
452
-
453
-
454
-
455
-
456
-
457
-
458
-
459
-
460
-
461
-
462
-
463
-
464
-
465
-
466
-
467
-
468
-
469
-
470
-
471
- <dt class="tag-source">Source:</dt>
472
- <dd class="tag-source"><ul class="dummy"><li>
473
- <a href="view-stream.js.html">view-stream.js</a>, <a href="view-stream.js.html#line101">line 101</a>
474
- </li></ul></dd>
475
-
476
-
477
-
478
-
479
-
480
-
481
-
482
- </dl>
483
-
484
-
485
-
486
-
487
-
488
-
489
-
490
-
491
-
492
-
493
-
494
-
495
-
496
-
497
-
498
-
499
-
500
- <h5>Examples</h5>
501
-
502
- <pre class="prettyprint"><code>// returns &lt;h2>Hello World&lt;/h2>
503
- new ViewStream({tagName:'h2', data:'Hello World'};</code></pre>
504
-
505
- <pre class="prettyprint"><code>// returns
506
- &lt;ul>
507
- &lt;li>firstName: Jane&lt;li>
508
- &lt;li>lastName: Doe&lt;li>
509
- &lt;li>Age: 23&lt;li>
510
- &lt;/ul>
511
-
512
- let myTemplate = '&lt;li>firstName: {{fName}}&lt;li>lastName: {{lName}}&lt;li>Age: {{age}}';
513
- let myData = {fName: Jane, lName: Doe, age:23};
514
- new ViewStream({tagName:'ul', data:myData, tmpl:myTemplate});</code></pre>
515
-
516
-
517
-
518
-
519
-
520
-
521
-
522
-
523
-
524
- </article>
525
-
526
- </section>
527
-
528
-
529
-
530
-
531
- </div>
532
-
533
- <nav>
534
- <h2><a href="index.html">Home</a></h2><h3>Classes</h3><ul><li><a href="DomItem_DomItem.html">DomItem</a></li><li><a href="ViewStream_ViewStream.html">ViewStream</a></li></ul><h3>Global</h3><ul><li><a href="global.html#ThSDFSDFSDFDSreatesorreferencesadomelment;thedomelementcanbeassimpleasa&#60;p&gt;tag,orthedomelementcanbealargedomchunkthatisgeneratedfromdataandanhtmltemplate.%253Cbr%253E%253Cbr%253EGenerally,theideaistoextendtheViewStreamclassandaddthecustomvalueswithintheconstructorfunction,butallofthevaluescanbepassedasparametersaswell.">ThSDFSDF SDF DSreates or references a dom elment; the dom element can be as simple as a &#60;p&gt; tag, or the dom element can be a large dom chunk that is generated from data and an html template.
535
- <br><br>
536
- Generally, the idea is to extend the ViewStream class and add the custom values within the constructor function, but all of the values can be passed as parameters as well.</a></li></ul>
537
- </nav>
538
-
539
- <br class="clear">
540
-
541
- <footer>
542
- Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.5.5</a> on Fri Dec 15 2017 21:48:35 GMT-0500 (EST)
543
- </footer>
544
-
545
- <script> prettyPrint(); </script>
546
- <script src="scripts/linenumber.js"> </script>
547
- </body>
548
- </html>
@@ -1,79 +0,0 @@
1
- <!DOCTYPE html>
2
- <html lang="en">
3
- <head>
4
- <meta charset="utf-8">
5
- <title>JSDoc: Home</title>
6
- <link href="https://fonts.googleapis.com/css?family=Roboto+Slab" rel="stylesheet">
7
-
8
- <script src="scripts/prettify/prettify.js"> </script>
9
- <script src="scripts/prettify/lang-css.js"> </script>
10
- <!--[if lt IE 9]>
11
- <script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
12
- <![endif]-->
13
- <link type="text/css" rel="stylesheet" href="styles/prettify-tomorrow.css">
14
- <!--
15
- <link type="text/css" rel="stylesheet" href="styles/jsdoc-default.css">
16
- -->
17
- <link type="text/css" rel="stylesheet" href="custom/css/jsdoc-viewstream.css">
18
-
19
-
20
- </head>
21
-
22
- <body>
23
-
24
- <div id="main">
25
-
26
- <a class="page-title spyne" href='https://www.npmjs.com/package/spyne' target='blank'>spyne</a>
27
-
28
-
29
-
30
-
31
-
32
-
33
-
34
-
35
- <h3> </h3>
36
-
37
-
38
-
39
-
40
-
41
-
42
-
43
-
44
-
45
-
46
-
47
-
48
-
49
-
50
-
51
- <section>
52
- <article><h2>Spyne js - Elegant, yet thoroughly modern javascript framework</h2><h3>Inspired by backbone, relying on rxjs and ramda</h3><p><a href="https://travis-ci.org/nybatista/spyne-alpha"><img src="https://img.shields.io/travis/rust-lang/rust.svg?style=flat-square" alt="Travis"></a>
53
- <a href="http://npm.im/spyne"><img src="https://img.shields.io/npm/v/spyne.svg?style=flat-square" alt="version"></a>
54
- <a href="https://github.com/nybatista/spyne-alpha/blob/master/LICENSE"><img src="https://img.shields.io/github/license/nybatista/spyne-alpha.svg?style=flat-square" alt="GitHub license"></a></p>
55
- <p><strong>es6 install</strong></p>
56
- <pre class="prettyprint source"><code>npm install</code></pre></article>
57
- </section>
58
-
59
-
60
-
61
-
62
-
63
-
64
- </div>
65
-
66
- <nav>
67
- <h2><a href="index.html">Home</a></h2><h3>Classes</h3><ul><li><a href="DomItem_DomItem.html">DomItem</a></li><li><a href="ViewStream_ViewStream.html">ViewStream</a></li></ul>
68
- </nav>
69
-
70
- <br class="clear">
71
-
72
- <footer>
73
- Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.5.5</a> on Fri Dec 08 2017 23:29:27 GMT-0500 (EST)
74
- </footer>
75
-
76
- <script> prettyPrint(); </script>
77
- <script src="scripts/linenumber.js"> </script>
78
- </body>
79
- </html>
package/docs/index.html DELETED
@@ -1,82 +0,0 @@
1
- <!DOCTYPE html>
2
- <html lang="en">
3
- <head>
4
- <meta charset="utf-8">
5
- <title>JSDoc: Home</title>
6
- <link href="https://fonts.googleapis.com/css?family=Roboto+Slab" rel="stylesheet">
7
-
8
- <script src="scripts/prettify/prettify.js"> </script>
9
- <script src="scripts/prettify/lang-css.js"> </script>
10
- <!--[if lt IE 9]>
11
- <script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
12
- <![endif]-->
13
- <link type="text/css" rel="stylesheet" href="styles/prettify-tomorrow.css">
14
- <!--
15
- <link type="text/css" rel="stylesheet" href="styles/jsdoc-default.css">
16
- -->
17
- <link type="text/css" rel="stylesheet" href="custom/css/jsdoc-viewstream.css">
18
-
19
-
20
- </head>
21
-
22
- <body>
23
-
24
- <div id="main">
25
- <a class="page-title spyne" href='https://www.npmjs.com/package/spyne' target='blank'>spyne</a>
26
-
27
- <!--
28
- <h1 class="page-title">Home</h1>
29
- -->
30
-
31
-
32
-
33
-
34
-
35
-
36
-
37
-
38
- <h3> </h3>
39
-
40
-
41
-
42
-
43
-
44
-
45
-
46
-
47
-
48
-
49
-
50
-
51
-
52
-
53
-
54
- <section>
55
- <article><h2>Spyne js - Elegant, yet thoroughly modern javascript framework</h2><h3>Inspired by backbone, relying on rxjs and ramda</h3><p><a href="https://travis-ci.org/nybatista/spyne-alpha"><img src="https://img.shields.io/travis/rust-lang/rust.svg?style=flat-square" alt="Travis"></a>
56
- <a href="http://npm.im/spyne"><img src="https://img.shields.io/npm/v/spyne.svg?style=flat-square" alt="version"></a>
57
- <a href="https://github.com/nybatista/spyne-alpha/blob/master/LICENSE"><img src="https://img.shields.io/github/license/nybatista/spyne-alpha.svg?style=flat-square" alt="GitHub license"></a></p>
58
- <p><strong>es6 install</strong></p>
59
- <pre class="prettyprint source"><code>npm install</code></pre></article>
60
- </section>
61
-
62
-
63
-
64
-
65
-
66
-
67
- </div>
68
-
69
- <nav>
70
- <h2><a href="index.html">Home</a></h2><h3>Classes</h3><ul><li><a href="DomItem.html">DomItem</a></li><li><a href="ViewStream.html">ViewStream</a></li></ul>
71
- </nav>
72
-
73
- <br class="clear">
74
-
75
- <footer>
76
- Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.5.5</a> on Fri Dec 15 2017 22:34:55 GMT-0500 (EST)
77
- </footer>
78
-
79
- <script> prettyPrint(); </script>
80
- <script src="scripts/linenumber.js"> </script>
81
- </body>
82
- </html>