-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
4428 lines (4428 loc) · 185 KB
/
package.json
File metadata and controls
4428 lines (4428 loc) · 185 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
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
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
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"name": "made-in-portugal",
"description": "A list of neat projects made in Portugal",
"keywords": [
"made",
"in",
"portugal",
"a",
"list",
"of",
"neat",
"projects"
],
"license": "MIT",
"version": "1.0.9",
"main": "lib/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Ionică Bizău <bizauionica@gmail.com> (https://ionicabizau.net)",
"files": [
"bin/",
"app/",
"lib/",
"dist/",
"src/",
"scripts/",
"resources/",
"menu/",
"cli.js",
"index.js",
"index.d.ts",
"package-lock.json",
"bloggify.js",
"bloggify.json",
"bloggify/"
],
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/IonicaBizau/made-in-portugal.git"
},
"bugs": {
"url": "https://github.com/IonicaBizau/made-in-portugal/issues"
},
"homepage": "https://github.com/IonicaBizau/made-in-portugal#readme",
"blah": {
"installation": [
{
"h2": "Contents"
},
{
"ul": [
"[JavaScript](#javascript)",
"[Java](#java)",
"[C#](#c-1)",
"[CSS](#css)",
"[C](undefined)",
"[C++](#c-2)",
"[ActionScript](#actionscript)",
"[Clojure](#clojure)",
"[Go](#go)",
"[Haskell](#haskell)",
"[Lua](#lua)",
"[Objective-C](#objective-c)",
"[Perl](#perl)",
"[PHP](#php)",
"[Python](#python)",
"[Ruby](#ruby)",
"[Scala](#scala)",
"[Shell](#shell)",
"[TeX](#tex)",
"[VimL](#viml)"
]
},
{
"h3": "JavaScript #"
},
{
"table": {
"headers": [
":star2:",
"Name",
"Description",
"🌍"
],
"rows": [
[
"3156",
"[@ruipgil](https://github.com/ruipgil)/[**scraperjs**](https://github.com/ruipgil/scraperjs)",
"A complete and versatile web scraper.",
""
],
[
"859",
"[@apocas](https://github.com/apocas)/[**dockerode**](https://github.com/apocas/dockerode)",
"Docker Remote API Node.js Client module",
""
],
[
"807",
"[@magalhas](https://github.com/magalhas)/[**backbone-react-compo…**](https://github.com/magalhas/backbone-react-component)",
"A bit of nifty glue that automatically plugs your Backbone models and collections into your React components, on the browser and server",
"[:arrow_upper_right:](http://magalhas.github.io/backbone-react-component/)"
],
[
"444",
"[@satazor](https://github.com/satazor)/[**js-spark-md5**](https://github.com/satazor/js-spark-md5)",
"Lightning fast normal and incremental md5 for javascript",
""
],
[
"422",
"[@pgte](https://github.com/pgte)/[**fugue**](https://github.com/pgte/fugue)",
"Unicorn for node.js",
""
],
[
"363",
"[@Quicksaver](https://github.com/Quicksaver)/[**Tab-Groups**](https://github.com/Quicksaver/Tab-Groups)",
"Reimplementation of Firefox Tab Groups as an add-on.",
"[:arrow_upper_right:](https://addons.mozilla.org/firefox/addon/tab-groups-panorama/)"
],
[
"264",
"[@ramitos](https://github.com/ramitos)/[**jsctags**](https://github.com/ramitos/jsctags)",
"jsctags generator using tern",
""
],
[
"199",
"[@Couto](https://github.com/Couto)/[**groundskeeper**](https://github.com/Couto/groundskeeper)",
"node.js package to remove forgotten console statements and specific blocks of code from you Javascript files",
""
],
[
"193",
"[@premasagar](https://github.com/premasagar)/[**tim**](https://github.com/premasagar/tim)",
"A tiny, secure JavaScript micro-templating script.",
""
],
[
"187",
"[@ramitos](https://github.com/ramitos)/[**react-tvml**](https://github.com/ramitos/react-tvml)",
"React bindings to Apple's TVJS and TVML",
""
],
[
"154",
"[@diasdavid](https://github.com/diasdavid)/[**webrtc-explorer**](https://github.com/diasdavid/webrtc-explorer)",
":earth_africa: P2P Network Routing Overlay designed for the Web platform (browsers)",
""
],
[
"151",
"[@pgte](https://github.com/pgte)/[**skiff**](https://github.com/pgte/skiff)",
"Node.js implementation of the Raft Consensus Algorithm",
""
],
[
"150",
"[@pgte](https://github.com/pgte)/[**alfred**](https://github.com/pgte/alfred)",
"Node is your mansion, Alfred is your butler. Node.js key-value store",
"[:arrow_upper_right:](http://pgte.github.com/alfred/)"
],
[
"119",
"[@pgte](https://github.com/pgte)/[**pouch-websocket-sync…**](https://github.com/pgte/pouch-websocket-sync-example)",
"Pouch Stream example",
""
],
[
"115",
"[@pgte](https://github.com/pgte)/[**carrier**](https://github.com/pgte/carrier)",
"Evented stream line reader for node.js",
""
],
[
"100",
"[@premasagar](https://github.com/premasagar)/[**pablo**](https://github.com/premasagar/pablo)",
"Pablo is a lightweight, expressive JavaScript SVG library. Pablo creates interactive drawings with SVG (Scalable Vector Graphics), giving access to all of SVG's granularity and power.",
"[:arrow_upper_right:](http://pablojs.com)"
],
[
"99",
"[@pgte](https://github.com/pgte)/[**konphyg**](https://github.com/pgte/konphyg)",
"Cascading configuration files made easy in Node.js.",
""
],
[
"95",
"[@diasdavid](https://github.com/diasdavid)/[**ipscend**](https://github.com/diasdavid/ipscend)",
":fireworks: Quick and simple deploy tool to host Native Web Applications and Static Web Pages in IPFS",
""
],
[
"95",
"[@premasagar](https://github.com/premasagar)/[**sqwidget**](https://github.com/premasagar/sqwidget)",
"JavaScript widget toolkit, for the creation and distribution of third-party web widgets.",
""
],
[
"85",
"[@dmfrancisco](https://github.com/dmfrancisco)/[**Desligado**](https://github.com/dmfrancisco/Desligado)",
"A simple web application supporting disconnection and deferred updates",
"[:arrow_upper_right:](http://dmfrancisco.github.io/Desligado/)"
],
[
"82",
"[@dmfrancisco](https://github.com/dmfrancisco)/[**react-icons**](https://github.com/dmfrancisco/react-icons)",
"React Component for Icons using Inline SVG",
"[:arrow_upper_right:](http://dmfrancisco.github.io/react-icons/)"
],
[
"82",
"[@diasdavid](https://github.com/diasdavid)/[**npm-on-ipfs**](https://github.com/diasdavid/npm-on-ipfs)",
":package: Install npm modules through IPFS! ",
""
],
[
"79",
"[@pgte](https://github.com/pgte)/[**pouch-redux-middlewa…**](https://github.com/pgte/pouch-redux-middleware)",
"PouchDB Redux Middleware",
""
],
[
"73",
"[@pgte](https://github.com/pgte)/[**simple-redis-safe-wo…**](https://github.com/pgte/simple-redis-safe-work-queue)",
"Node.js Redis-based simple and safe work queue ",
""
],
[
"72",
"[@dmfrancisco](https://github.com/dmfrancisco)/[**escrito**](https://github.com/dmfrancisco/escrito)",
"Collaborative writing with Markdown & Textile",
"[:arrow_upper_right:](http://escrito.herokuapp.com/)"
],
[
"72",
"[@pgte](https://github.com/pgte)/[**handson_nodejs_sourc…**](https://github.com/pgte/handson_nodejs_source_code)",
"Source code for the Hands-on Node.js book",
""
],
[
"71",
"[@pgte](https://github.com/pgte)/[**banzai**](https://github.com/pgte/banzai)",
"Document processing framework for Node",
"[:arrow_upper_right:](https://github.com/pgte/banzai)"
],
[
"69",
"[@Quicksaver](https://github.com/Quicksaver)/[**FindBar-Tweak**](https://github.com/Quicksaver/FindBar-Tweak)",
"A firefox add-on that lets you customize the Find Toolbar the way you like it.",
"[:arrow_upper_right:](https://addons.mozilla.org/firefox/addon/findbar-tweak/)"
],
[
"64",
"[@tdantas](https://github.com/tdantas)/[**it-interviews**](https://github.com/tdantas/it-interviews)",
"Easy way to find good IT interview questions",
""
],
[
"61",
"[@Quicksaver](https://github.com/Quicksaver)/[**The-Fox--Only-Better**](https://github.com/Quicksaver/The-Fox--Only-Better)",
"A Firefox add-on to improve the feeling of using the new Australis theme.",
"[:arrow_upper_right:](https://addons.mozilla.org/firefox/addon/the-fox-only-better/)"
],
[
"60",
"[@premasagar](https://github.com/premasagar)/[**sandie**](https://github.com/premasagar/sandie)",
"Create a new JavaScript context within the browser. This allows external scripts to be loaded and arbitrary JavaScript to be executed without affecting the global scope. Potential conflicts between scripts are avoided via the sandbox of a 'sourceless' iframe document.",
""
],
[
"57",
"[@Couto](https://github.com/Couto)/[**grunt-groundskeeper**](https://github.com/Couto/grunt-groundskeeper)",
"Remove console statements, debugger and specific blocks of code",
""
],
[
"54",
"[@premasagar](https://github.com/premasagar)/[**appleofmyiframe**](https://github.com/premasagar/appleofmyiframe)",
"JavaScript library for creating & manipulating 'sourceless' iframe documents (i.e. those without an external document src); jQuery plugin.",
""
],
[
"51",
"[@cusspvz](https://github.com/cusspvz)/[**btsync.docker**](https://github.com/cusspvz/btsync.docker)",
":arrows_counterclockwise: A 32MB docker image sync service built for persisting data on clusters",
""
],
[
"50",
"[@ricardofbarros](https://github.com/ricardofbarros)/[**linter-js-standard**](https://github.com/ricardofbarros/linter-js-standard)",
"Atom linter plugin for JavaScript, using JavaScript Standard Style",
"[:arrow_upper_right:](https://atom.io/packages/linter-js-standard)"
],
[
"47",
"[@rogeriopvl](https://github.com/rogeriopvl)/[**nodo**](https://github.com/rogeriopvl/nodo)",
"Command line TODO app",
"[:arrow_upper_right:](http://rogeriopvl.github.io/nodo)"
],
[
"46",
"[@pgte](https://github.com/pgte)/[**skiff-algorithm**](https://github.com/pgte/skiff-algorithm)",
"Raft implementation in Node.js",
""
],
[
"46",
"[@pgte](https://github.com/pgte)/[**level-jobs**](https://github.com/pgte/level-jobs)",
"Job Queue in LevelDB",
""
],
[
"42",
"[@nneves](https://github.com/nneves)/[**Raspberrypi_GPIO**](https://github.com/nneves/Raspberrypi_GPIO)",
"Remote control appliances via WebInterface by using a RaspberryPi + Node.js + GPIO Relay control board (turning On/Off a coffee machine, toaster, heater, etc from a webpage in your mobile phone, tablet or laptop)",
""
],
[
"38",
"[@apocas](https://github.com/apocas)/[**docker-modem**](https://github.com/apocas/docker-modem)",
"Docker Remote API network stack.",
""
],
[
"35",
"[@rogeriopvl](https://github.com/rogeriopvl)/[**gulp-ejs**](https://github.com/rogeriopvl/gulp-ejs)",
"Gulp plugin for ejs templates",
""
],
[
"33",
"[@pgte](https://github.com/pgte)/[**node-patterns-code**](https://github.com/pgte/node-patterns-code)",
"Code for the Node Patterns Book Series",
""
],
[
"32",
"[@magalhas](https://github.com/magalhas)/[**express-react-engine**](https://github.com/magalhas/express-react-engine)",
"A React's JSX express rendering engine",
""
],
[
"30",
"[@diasdavid](https://github.com/diasdavid)/[**mailgun-validate-ema…**](https://github.com/diasdavid/mailgun-validate-email)",
"Use mailgun Email Validation API to validate email addresses",
""
],
[
"29",
"[@hugorodrigues](https://github.com/hugorodrigues)/[**lxc.js**](https://github.com/hugorodrigues/lxc.js)",
"LXC Linux Containers Interface for nodeJS",
""
],
[
"28",
"[@pgte](https://github.com/pgte)/[**node-openni-browser**](https://github.com/pgte/node-openni-browser)",
"Kinect on the browser",
""
],
[
"27",
"[@pgte](https://github.com/pgte)/[**pouch-websocket-sync**](https://github.com/pgte/pouch-websocket-sync)",
"PouchDB live sync through websockets",
""
],
[
"26",
"[@rogeriopvl](https://github.com/rogeriopvl)/[**gulp-mustache**](https://github.com/rogeriopvl/gulp-mustache)",
"A gulp plugin that renders mustache templates",
""
],
[
"26",
"[@tdantas](https://github.com/tdantas)/[**async-if-else**](https://github.com/tdantas/async-if-else)",
"Conditional capabilities to NodeJS Async module",
""
],
[
"26",
"[@ramitos](https://github.com/ramitos)/[**inverted**](https://github.com/ramitos/inverted)",
"inverted-index for level with pagination, sift3/cosine distance, tf-idf ranking, and more",
""
],
[
"23",
"[@Quicksaver](https://github.com/Quicksaver)/[**OmniSidebar**](https://github.com/Quicksaver/OmniSidebar)",
"A firefox add-on designed to provide more control over the behavior of the sidebar.",
"[:arrow_upper_right:](https://addons.mozilla.org/firefox/addon/omnisidebar/)"
],
[
"22",
"[@pgte](https://github.com/pgte)/[**moving-average**](https://github.com/pgte/moving-average)",
"Moving Average",
""
],
[
"22",
"[@diasdavid](https://github.com/diasdavid)/[**webrtc-ring**](https://github.com/diasdavid/webrtc-ring)",
"Chord inspired ring DHT algorithm using WebRTC as transport layer for P2P in the browser",
""
],
[
"21",
"[@nneves](https://github.com/nneves)/[**R2C2_WebInterface**](https://github.com/nneves/R2C2_WebInterface)",
"WebInterface using Node.JS on a Linux Embedded board to remote control an R2C2 RepRap 3D printers/CNC board.",
""
],
[
"20",
"[@pgte](https://github.com/pgte)/[**procmon**](https://github.com/pgte/procmon)",
"Process Monitor UI",
""
],
[
"20",
"[@hugorodrigues](https://github.com/hugorodrigues)/[**rpc.js**](https://github.com/hugorodrigues/rpc.js)",
"Simple and lightweight JSON-RPC [gateway, server and documentation] for Node.JS",
""
],
[
"20",
"[@cusspvz](https://github.com/cusspvz)/[**c4**](https://github.com/cusspvz/c4)",
":fire: a javascript engine burster",
""
],
[
"20",
"[@diasdavid](https://github.com/diasdavid)/[**simple-raytracer**](https://github.com/diasdavid/simple-raytracer)",
"simple-raytracer works as a standalone version of the JS raytracer found in distracer.io, which was inspired by jsRayTracer. It's purpose is to offer a simple raytracing interface that can be run locally in, in a distributed fashion on a server or even in browsers",
""
],
[
"19",
"[@apocas](https://github.com/apocas)/[**node-whmcs**](https://github.com/apocas/node-whmcs)",
"WHMCS's API Node.js client",
""
],
[
"19",
"[@Quicksaver](https://github.com/Quicksaver)/[**Bootstraped-Addon-Ba…**](https://github.com/Quicksaver/Bootstraped-Addon-Backbone)",
"",
""
],
[
"19",
"[@premasagar](https://github.com/premasagar)/[**poloniex.js**](https://github.com/premasagar/poloniex.js)",
"",
""
],
[
"18",
"[@pgte](https://github.com/pgte)/[**nodetuts_26**](https://github.com/pgte/nodetuts_26)",
"Node Tuts episode 26",
""
],
[
"18",
"[@premasagar](https://github.com/premasagar)/[**nitelite**](https://github.com/premasagar/nitelite)",
"A low-level Lightbox plugin for jQuery.",
""
],
[
"18",
"[@pgte](https://github.com/pgte)/[**dribbledb**](https://github.com/pgte/dribbledb)",
"MVCC database written in javascript",
""
],
[
"17",
"[@rogeriopvl](https://github.com/rogeriopvl)/[**gulp-jsonlint**](https://github.com/rogeriopvl/gulp-jsonlint)",
"jsonlint plugin for Gulp",
""
],
[
"16",
"[@ramitos](https://github.com/ramitos)/[**rating**](https://github.com/ramitos/rating)",
"rating widget",
"[:arrow_upper_right:](http://ramitos.github.com/rating)"
],
[
"16",
"[@rogeriopvl](https://github.com/rogeriopvl)/[**downstagram**](https://github.com/rogeriopvl/downstagram)",
"Command line tool to download and backup all your Instagram photos",
""
],
[
"15",
"[@pgte](https://github.com/pgte)/[**flowbench**](https://github.com/pgte/flowbench)",
"HTTP traffic generator. Supports user flows with alternative paths. Stores stats on latency.",
""
],
[
"15",
"[@diasdavid](https://github.com/diasdavid)/[**webrtc-explorer-sign…**](https://github.com/diasdavid/webrtc-explorer-signalling-server)",
"",
""
],
[
"15",
"[@diasdavid](https://github.com/diasdavid)/[**piri-piri**](https://github.com/diasdavid/piri-piri)",
"piri-piri is a browser orchestration tool to enable decentralized browser applications tests. Ah and it is hot :)",
""
],
[
"15",
"[@pgte](https://github.com/pgte)/[**pipeline**](https://github.com/pgte/pipeline)",
"Build stream pipe chains",
""
],
[
"15",
"[@brunocasanova](https://github.com/brunocasanova)/[**chathellup**](https://github.com/brunocasanova/chathellup)",
"Because sometimes just chat the hell up!",
""
],
[
"13",
"[@nneves](https://github.com/nneves)/[**3DPrinterInterface**](https://github.com/nneves/3DPrinterInterface)",
"3D Printer Interface",
""
],
[
"13",
"[@pgte](https://github.com/pgte)/[**duplex-emitter**](https://github.com/pgte/duplex-emitter)",
"Turns a duplex streams into an event emitter.",
""
],
[
"12",
"[@JosePedroDias](https://github.com/JosePedroDias)/[**musicnot**](https://github.com/JosePedroDias/musicnot)",
"experimenting with musical score processing for playback and visualization",
"[:arrow_upper_right:](http://josepedrodias.github.io/musicnot/index.html)"
],
[
"12",
"[@ramitos](https://github.com/ramitos)/[**dots**](https://github.com/ramitos/dots)",
"loading animation with dots",
"[:arrow_upper_right:](http://ramitos.github.com/dots/)"
],
[
"11",
"[@diasdavid](https://github.com/diasdavid)/[**webrtc-explorer-peer…**](https://github.com/diasdavid/webrtc-explorer-peer-id)",
"DHT circular IDs generator and methods",
""
],
[
"11",
"[@diasdavid](https://github.com/diasdavid)/[**js-multistream**](https://github.com/diasdavid/js-multistream)",
"implementation of multistream spec https://github.com/jbenet/multistream",
""
],
[
"11",
"[@callmephilip](https://github.com/callmephilip)/[**backbone-tyler**](https://github.com/callmephilip/backbone-tyler)",
"Composite views with backbone and handlebars.js",
""
],
[
"11",
"[@pgte](https://github.com/pgte)/[**node_tuts_episode_13**](https://github.com/pgte/node_tuts_episode_13)",
"Node Tuts episode 13",
""
],
[
"11",
"[@premasagar](https://github.com/premasagar)/[**cmd.js**](https://github.com/premasagar/cmd.js)",
"A lightweight, asynchronous flow controller / file loader",
""
],
[
"11",
"[@pgte](https://github.com/pgte)/[**nodetuts_code**](https://github.com/pgte/nodetuts_code)",
"Some code for the nodetuts screencasts",
""
],
[
"11",
"[@Quicksaver](https://github.com/Quicksaver)/[**Puzzle-Toolbars**](https://github.com/Quicksaver/Puzzle-Toolbars)",
"A Firefox that adds many toolbar choices to fully customize the browser window.",
"[:arrow_upper_right:](https://addons.mozilla.org/firefox/addon/puzzle-toolbars/)"
],
[
"11",
"[@magalhas](https://github.com/magalhas)/[**httpd-mock**](https://github.com/magalhas/httpd-mock)",
"httpd-mock for Node.js runs a http static server. Supports mock API implementation",
""
],
[
"11",
"[@diasdavid](https://github.com/diasdavid)/[**webrtc-explorer-visu…**](https://github.com/diasdavid/webrtc-explorer-visualizer)",
"",
""
],
[
"11",
"[@pgte](https://github.com/pgte)/[**level-vectorclock**](https://github.com/pgte/level-vectorclock)",
"Vector Clocks in LevelDB",
""
],
[
"10",
"[@BrunoBernardino](https://github.com/BrunoBernardino)/[**ProjQueryPlugins**](https://github.com/BrunoBernardino/ProjQueryPlugins)",
"Code Repository for the Pro jQuery Plugins eBook: http://projqueryplugins.com",
""
],
[
"10",
"[@diasdavid](https://github.com/diasdavid)/[**webrtc-explorer-brow…**](https://github.com/diasdavid/webrtc-explorer-browser-process)",
"",
""
],
[
"10",
"[@pgte](https://github.com/pgte)/[**pouch-remote-stream**](https://github.com/pgte/pouch-remote-stream)",
"Remote Stream for PouchDB",
""
],
[
"10",
"[@diasdavid](https://github.com/diasdavid)/[**webrtc-ring-signalin…**](https://github.com/diasdavid/webrtc-ring-signaling-server)",
"",
""
],
[
"10",
"[@diasdavid](https://github.com/diasdavid)/[**webrtc-explorer-simu…**](https://github.com/diasdavid/webrtc-explorer-simulator)",
"",
""
],
[
"10",
"[@JosePedroDias](https://github.com/JosePedroDias)/[**avconv-utils**](https://github.com/JosePedroDias/avconv-utils)",
"extracts frames from a video, composing a mosaic suitable for previewing à là youtube; parses video metadata too",
""
],
[
"9",
"[@diasdavid](https://github.com/diasdavid)/[**raytracer-browser-p2…**](https://github.com/diasdavid/raytracer-browser-p2p)",
"",
""
],
[
"9",
"[@fabriceleal](https://github.com/fabriceleal)/[**SweetJsTests**](https://github.com/fabriceleal/SweetJsTests)",
"Tests with sweet.js, macros in Javascript! :3",
""
],
[
"9",
"[@diasdavid](https://github.com/diasdavid)/[**webrtc-chord-signall…**](https://github.com/diasdavid/webrtc-chord-signalling-server)",
"",
""
],
[
"9",
"[@diasdavid](https://github.com/diasdavid)/[**webrtc-chord-uuid**](https://github.com/diasdavid/webrtc-chord-uuid)",
"",
""
],
[
"9",
"[@diasdavid](https://github.com/diasdavid)/[**webrtc-chord**](https://github.com/diasdavid/webrtc-chord)",
"",
""
],
[
"9",
"[@premasagar](https://github.com/premasagar)/[**theywriteforyou**](https://github.com/premasagar/theywriteforyou)",
"Data journalism mashup, showing the number of articles by MPs in British newspapers.",
"[:arrow_upper_right:](http://dharmafly.com/theywriteforyou/)"
],
[
"9",
"[@premasagar](https://github.com/premasagar)/[**important**](https://github.com/premasagar/important)",
"css !important manipulator (jQuery plugin)",
""
],
[
"9",
"[@pgte](https://github.com/pgte)/[**cyclops**](https://github.com/pgte/cyclops)",
"Controlling remote browser session with a pure javascript solution",
""
],
[
"9",
"[@apocas](https://github.com/apocas)/[**outkept**](https://github.com/apocas/outkept)",
"Auto-discover, reactive monitoring platform.",
"[:arrow_upper_right:](http://outke.pt)"
],
[
"9",
"[@diasdavid](https://github.com/diasdavid)/[**canela**](https://github.com/diasdavid/canela)",
"",
""
],
[
"8",
"[@pgte](https://github.com/pgte)/[**propagate**](https://github.com/pgte/propagate)",
"Propagate events from one event emitter into another",
""
],
[
"8",
"[@JosePedroDias](https://github.com/JosePedroDias)/[**div3d**](https://github.com/JosePedroDias/div3d)",
"div3d - my take on transformed CSS",
"[:arrow_upper_right:](http://josepedrodias.github.com/div3d/)"
],
[
"8",
"[@Quicksaver](https://github.com/Quicksaver)/[**Omnibar-Plus**](https://github.com/Quicksaver/Omnibar-Plus)",
"A firefox add-on designed to bring extra functionality to the Omnibar add-on",
"[:arrow_upper_right:](https://addons.mozilla.org/en-US/firefox/addon/omnibar-plus/)"
],
[
"8",
"[@cusspvz](https://github.com/cusspvz)/[**set-asap**](https://github.com/cusspvz/set-asap)",
"setAsap - async variable call control",
""
],
[
"8",
"[@pgte](https://github.com/pgte)/[**woosh**](https://github.com/pgte/woosh)",
"Streaming composable templates - IN CONSTRUCTION",
""
],
[
"8",
"[@Couto](https://github.com/Couto)/[**Blueprint**](https://github.com/Couto/Blueprint)",
"Sugar syntax for Prototypal Inheritance",
""
],
[
"8",
"[@pgte](https://github.com/pgte)/[**verbose**](https://github.com/pgte/verbose)",
"Remote peer-to-peer event synchronization",
""
],
[
"7",
"[@dmfrancisco](https://github.com/dmfrancisco)/[**spacehorse**](https://github.com/dmfrancisco/spacehorse)",
"WIP – Organize your knowledge in a visual way",
""
],
[
"7",
"[@ricardofbarros](https://github.com/ricardofbarros)/[**terminal-converter**](https://github.com/ricardofbarros/terminal-converter)",
"Query google converter inside your terminal",
""
],
[
"7",
"[@premasagar](https://github.com/premasagar)/[**mishmash**](https://github.com/premasagar/mishmash)",
"An assortment of little JavaScript functions, snippets and jQuery plugins. Stuff that doesn't warrant its own repository, but is too big or important for a gist.",
""
],
[
"7",
"[@diasdavid](https://github.com/diasdavid)/[**lan-chat**](https://github.com/diasdavid/lan-chat)",
"Chat for your lan parties, events, trainings and other things were the WAN simply fails :)",
""
],
[
"7",
"[@rogeriopvl](https://github.com/rogeriopvl)/[**generator-gulpfile**](https://github.com/rogeriopvl/generator-gulpfile)",
"A Gulpfile generator for Yeoman",
""
],
[
"7",
"[@waldyrious](https://github.com/waldyrious)/[**learning-holography**](https://github.com/waldyrious/learning-holography)",
"Some notes, diagrams and animations to help understanding the basis of holography",
"[:arrow_upper_right:](http://waldyrious.github.io/learning-holography)"
],
[
"7",
"[@cusspvz](https://github.com/cusspvz)/[**ect-loader**](https://github.com/cusspvz/ect-loader)",
"ect templates compiler for webpack",
""
],
[
"7",
"[@hugorodrigues](https://github.com/hugorodrigues)/[**child**](https://github.com/hugorodrigues/child)",
"Minimalistic nodejs process manager. Similar to forever-monitor",
""
],
[
"6",
"[@ramitos](https://github.com/ramitos)/[**jsonstream2**](https://github.com/ramitos/jsonstream2)",
"Dominic Tarr's JSONStream using Rodd Vaggs' through2",
""
],
[
"6",
"[@ramitos](https://github.com/ramitos)/[**dimensions**](https://github.com/ramitos/dimensions)",
"jQuery based dimensions getters and setters (innerHeight, innerWidth, height, width, outerHeight and outerWidth)",
""
],
[
"6",
"[@ramitos](https://github.com/ramitos)/[**modella-level-relati…**](https://github.com/ramitos/modella-level-relations)",
"levelup based modella relations",
""
],
[
"6",
"[@diasdavid](https://github.com/diasdavid)/[**webrtc-connect**](https://github.com/diasdavid/webrtc-connect)",
"Establish WebRTC Data Channels between browser-node and node-node with a TCP/HTTP/WebSockets \"createServer/attach\" like interface",
""
],
[
"6",
"[@diasdavid](https://github.com/diasdavid)/[**blog-maker**](https://github.com/diasdavid/blog-maker)",
"Blog generator from .md post files, highly inspired from blog.nodejs.org",
""
],
[
"6",
"[@premasagar](https://github.com/premasagar)/[**revolutionaries**](https://github.com/premasagar/revolutionaries)",
"@sciencehackday hack - an explorer of the evolution of great scientific inventors, thinkers and their discoveries",
"[:arrow_upper_right:](http://dharmafly.com/revolutionaries/)"
],
[
"6",
"[@diasdavid](https://github.com/diasdavid)/[**node-dirbuster**](https://github.com/diasdavid/node-dirbuster)",
"",
""
],
[
"6",
"[@magalhas](https://github.com/magalhas)/[**react-cli**](https://github.com/magalhas/react-cli)",
"Render React components through the command line",
""
],
[
"6",
"[@diasdavid](https://github.com/diasdavid)/[**webcrypto**](https://github.com/diasdavid/webcrypto)",
"WebCryptoAPI polyfil to work in Node.js in the Browser (so that you don't have to be concerned about moving crypto code between a browser and server side app) ",
""
],
[
"6",
"[@rogeriopvl](https://github.com/rogeriopvl)/[**windrose**](https://github.com/rogeriopvl/windrose)",
"Convert compass degrees into points of the compass and vice versa",
""
],
[
"5",
"[@satazor](https://github.com/satazor)/[**redux-boilerplate**](https://github.com/satazor/redux-boilerplate)",
"A boilerplate for starting a large redux based app",
""
],
[
"5",
"[@fabriceleal](https://github.com/fabriceleal)/[**ExpJavascriptMVC**](https://github.com/fabriceleal/ExpJavascriptMVC)",
"Some experiences at making a MVC Framework with Javascript, allowing development of dynamic web apps using only client-side code.",
"[:arrow_upper_right:](http://fabriceleal.github.com/ExpJavascriptMVC/index.html)"
],
[
"5",
"[@diasdavid](https://github.com/diasdavid)/[**js-ucat**](https://github.com/diasdavid/js-ucat)",
"ucat(uTP cat) implementation is JavaScript to be used with Node.js",
""
],
[
"5",
"[@ramitos](https://github.com/ramitos)/[**react-worker**](https://github.com/ramitos/react-worker)",
"react in a web worker",
""
],
[
"5",
"[@JosePedroDias](https://github.com/JosePedroDias)/[**aframe-extrude-and-l…**](https://github.com/JosePedroDias/aframe-extrude-and-lathe)",
"This module offers lathe and extrude components to aframevr",
"[:arrow_upper_right:](https://output.jsbin.com/jiyewa/)"
],
[
"5",
"[@JosePedroDias](https://github.com/JosePedroDias)/[**simple-tts**](https://github.com/JosePedroDias/simple-tts)",
"",
""
],
[
"5",
"[@waldyrious](https://github.com/waldyrious)/[**semantic-linebreaker**](https://github.com/waldyrious/semantic-linebreaker)",
"A utility to help you apply semantic linebreaks to any text",
"[:arrow_upper_right:](http://rhodesmill.org/brandon/2012/one-sentence-per-line/)"
],
[
"5",
"[@ricardofbarros](https://github.com/ricardofbarros)/[**battleship-game**](https://github.com/ricardofbarros/battleship-game)",
"Terminal battleship game",
""
],
[
"5",
"[@tdantas](https://github.com/tdantas)/[**slack-json-proxy**](https://github.com/tdantas/slack-json-proxy)",
"Slack JSON Api Proxy",
""
],
[
"5",
"[@apocas](https://github.com/apocas)/[**dashode**](https://github.com/apocas/dashode)",
"Simple HTTP daemon realtime web dashboard for clf based webservers.",
""
],
[
"5",
"[@fabriceleal](https://github.com/fabriceleal)/[**Jsoned**](https://github.com/fabriceleal/Jsoned)",
"The json stream editor utility.",
""
],
[
"4",
"[@jgradim](https://github.com/jgradim)/[**youtube-dj**](https://github.com/jgradim/youtube-dj)",
"A turn table set where your CD's are YouTube videos.",
""
],
[
"4",
"[@waldyrious](https://github.com/waldyrious)/[**odot**](https://github.com/waldyrious/odot)",
"A simple but powerful task manager",
""
],
[
"4",
"[@rogeriopvl](https://github.com/rogeriopvl)/[**chatstorm**](https://github.com/rogeriopvl/chatstorm)",
"A brainstorming web application that uses a real-time chat to share ideas.",
"[:arrow_upper_right:](http://github.com/rogeriopvl/chatstorm)"
],
[
"4",
"[@JosePedroDias](https://github.com/JosePedroDias)/[**video360**](https://github.com/JosePedroDias/video360)",
"plays and allows exploring both cubemap (fb) and equirectangular (youtube) videos. Relies on WebGL and the video element with CORS headers",
"[:arrow_upper_right:](http://rawgit.com/JosePedroDias/video360/master/demo.html)"
],
[
"4",
"[@diasdavid](https://github.com/diasdavid)/[**sise-project-templat…**](https://github.com/diasdavid/sise-project-template)",
"This repo contains a template and instructions on how to submit the Project for the SISE-CWEB Course",
""
],
[
"4",
"[@ramitos](https://github.com/ramitos)/[**errg**](https://github.com/ramitos/errg)",
"",
""
],
[
"4",
"[@premasagar](https://github.com/premasagar)/[**promisespromises**](https://github.com/premasagar/promisespromises)",
"",
"[:arrow_upper_right:](http://promisespromises.dharmafly.com)"
],
[
"4",
"[@diasdavid](https://github.com/diasdavid)/[**js-merkledag-store**](https://github.com/diasdavid/js-merkledag-store)",
"JavaScript MerkleDAG Storage implementation",
""
],
[
"4",
"[@tdantas](https://github.com/tdantas)/[**bullshit-font-genera…**](https://github.com/tdantas/bullshit-font-generator)",
"Bullshit Font Generator",
""
],
[
"4",
"[@apocas](https://github.com/apocas)/[**lxjs-dns**](https://github.com/apocas/lxjs-dns)",
"Docker.io LXJS workshop DNS Server",
""
],
[
"4",
"[@cusspvz](https://github.com/cusspvz)/[**card-sharing**](https://github.com/cusspvz/card-sharing)",
"Fetches card sharing servers configurations from a group of selected sources and generates output as: plain lines, oscam and possibly others if you PR them. :)",
""
],
[
"4",
"[@BrunoBernardino](https://github.com/BrunoBernardino)/[**node-google-cloud-he…**](https://github.com/BrunoBernardino/node-google-cloud-helper)",
"A CLI Node.js helper for Google Cloud",
""
],
[
"4",
"[@ramitos](https://github.com/ramitos)/[**json-to-react-elemen…**](https://github.com/ramitos/json-to-react-element)",
"json > react-element",
""
],
[
"4",
"[@ramitos](https://github.com/ramitos)/[**xmlstream2**](https://github.com/ramitos/xmlstream2)",
"Pipeable XML parser",
""
],
[
"4",