-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
8595 lines (8595 loc) · 380 KB
/
package.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
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-brazil",
"description": "A list of neat projects made in Brazil.",
"keywords": [
"made",
"in",
"brazil",
"a",
"list",
"of",
"cool",
"projects"
],
"license": "MIT",
"version": "1.0.10",
"main": "lib/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Ionică Bizău <[email protected]> (https://ionicabizau.net)",
"files": [
"bin/",
"app/",
"lib/",
"dist/",
"src/",
"scripts/",
"resources/",
"menu/",
"cli.js",
"index.js",
"bloggify.js",
"bloggify.json",
"bloggify/"
],
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/IonicaBizau/made-in-brazil.git"
},
"bugs": {
"url": "https://github.com/IonicaBizau/made-in-brazil/issues"
},
"homepage": "https://github.com/IonicaBizau/made-in-brazil#readme",
"dependencies": {
"bindy": "^1.0.4",
"made-in": "^1.0.3",
"one-by-one": "^3.2.1",
"package-json-path": "^1.0.2",
"r-json": "^1.2.3",
"uc-first": "^1.0.2",
"w-json": "^1.3.3"
},
"blah": {
"show_installation": false,
"related": [
"made-in-romania"
],
"title": "Made in Brazil",
"installation": [
{
"h2": "Contents"
},
{
"ul": [
"[JavaScript](#javascript)",
"[Java](#java)",
"[C#](#c-1)",
"[CSS](#css)",
"[HTML](#html)",
"[C](undefined)",
"[C++](#c-2)",
"[ActionScript](#actionscript)",
"[Clojure](#clojure)",
"[Go](#go)",
"[Haskell](#haskell)",
"[Lua](#lua)",
"[Matlab](#matlab)",
"[Objective-C](#objective-c)",
"[Perl](#perl)",
"[PHP](#php)",
"[Python](#python)",
"[R](#r)",
"[Ruby](#ruby)",
"[Scala](#scala)",
"[Shell](#shell)",
"[Swift](#swift)",
"[TeX](#tex)",
"[VimL](#viml)"
]
},
{
"h3": "JavaScript ###"
},
{
"table": {
"headers": [
":star2:",
"Name",
"Description",
"🌍"
],
"rows": [
[
"6221",
"[@braziljs](https://github.com/braziljs/)/[**js-the-right-way**](https://github.com/braziljs/js-the-right-way)",
"An easy-to-read, quick reference for JS best practices, accepted coding standards, and links around the Web",
"[:arrow_upper_right:](http://jstherightway.org)"
],
[
"1455",
"[@dleitee](https://github.com/dleitee)/[**strman**](https://github.com/dleitee/strman)",
"A Javascript string manipulation library.",
""
],
[
"1169",
"[@robotlolita](https://github.com/robotlolita)/[**fuck-you**](https://github.com/robotlolita/fuck-you)",
" (╯°□°)╯︵sǝssǝɔoɹd oʎ llɐ llıʞǝɓɐɹ",
""
],
[
"968",
"[@ellisonleao](https://github.com/ellisonleao)/[**clumsy-bird**](https://github.com/ellisonleao/clumsy-bird)",
":bird: :video_game: A MelonJS port of the famous Flappy Bird Game",
"[:arrow_upper_right:](http://ellisonleao.github.io/clumsy-bird/)"
],
[
"962",
"[@ellisonleao](https://github.com/ellisonleao)/[**sharer.js**](https://github.com/ellisonleao/sharer.js)",
":on: :bookmark: Create your own social share buttons",
"[:arrow_upper_right:](http://ellison.rocks/sharer.js)"
],
[
"626",
"[@filipedeschamps](https://github.com/filipedeschamps)/[**rss-feed-emitter**](https://github.com/filipedeschamps/rss-feed-emitter)",
"Super RSS News Feed aggregator written in Node.js and ES6",
""
],
[
"532",
"[@raphamorim](https://github.com/raphamorim)/[**origami.js**](https://github.com/raphamorim/origami.js)",
"HTML5 Canvas for Humans 人間のためのキャンバス",
"[:arrow_upper_right:](http://origamijs.com)"
],
[
"360",
"[@robotlolita](https://github.com/robotlolita)/[**raven**](https://github.com/robotlolita/raven)",
"Raven is a minimal, distraction-free text editor with good typography.",
"[:arrow_upper_right:](http://robotlolita.me/raven/)"
],
[
"305",
"[@rodrigobranas](https://github.com/rodrigobranas)/[**youtube**](https://github.com/rodrigobranas/youtube)",
"Código das séries do Youtube",
""
],
[
"246",
"[@fdaciuk](https://github.com/fdaciuk)/[**ajax**](https://github.com/fdaciuk/ajax)",
"Ajax module in Vanilla JS",
"[:arrow_upper_right:](https://www.npmjs.com/package/@fdaciuk/ajax)"
],
[
"225",
"[@raphamorim](https://github.com/raphamorim)/[**waterfall.js**](https://github.com/raphamorim/waterfall.js)",
"Tired of use creepy hacks or heavy ways to get a Grid based on Pinterest?",
"[:arrow_upper_right:](http://raphamorim.com/waterfall.js/)"
],
[
"139",
"[@afonsopacifer](https://github.com/afonsopacifer)/[**react-pomodoro**](https://github.com/afonsopacifer/react-pomodoro)",
":alarm_clock: Pomodoro timer built with ReactJS.",
"[:arrow_upper_right:](http://afonsopacifer.github.io/react-pomodoro/)"
],
[
"136",
"[@vitorbritto](https://github.com/vitorbritto)/[**workflow-guide**](https://github.com/vitorbritto/workflow-guide)",
"My workflow context and own code conventions :ghost:",
""
],
[
"134",
"[@loiane](https://github.com/loiane)/[**javascript-datastruc…**](https://github.com/loiane/javascript-datastructures-algorithms)",
":books: source code bundle of JavaScript algorithms and data structures book",
"[:arrow_upper_right:](https://goo.gl/hrb00r)"
],
[
"134",
"[@coreh](https://github.com/coreh)/[**hookshot**](https://github.com/coreh/hookshot)",
"Hookshot is a tiny library and companion CLI tool for handling GitHub post-receive hooks.",
""
],
[
"122",
"[@willianjusten](https://github.com/willianjusten)/[**screamer-js**](https://github.com/willianjusten/screamer-js)",
"Screamer.js is a Vanilla Javascript plugin to provide simple yet fully customisable web notifications using Web Notifications API.",
"[:arrow_upper_right:](http://willianjusten.com.br/screamer-js/example/)"
],
[
"103",
"[@raphamorim](https://github.com/raphamorim)/[**native-css**](https://github.com/raphamorim/native-css)",
"Convert pure CSS to React Style or javascript literal objects.",
"[:arrow_upper_right:](https://www.npmjs.com/package/native-css)"
],
[
"83",
"[@loiane](https://github.com/loiane)/[**extjs4-ux-gridprinte…**](https://github.com/loiane/extjs4-ux-gridprinter)",
":paperclip: Ext.ux.GridPrinter plugin for ExtJS 4 or Ext JS 5",
"[:arrow_upper_right:](http://loianegroner.com)"
],
[
"79",
"[@jaydson](https://github.com/jaydson)/[**es7-async**](https://github.com/jaydson/es7-async)",
"Playing around with ES7 async functions",
""
],
[
"66",
"[@eshiota](https://github.com/eshiota)/[**retro-audio-js**](https://github.com/eshiota/retro-audio-js)",
"Web Audio API based retro player that give us that nostalgic feelings.",
""
],
[
"62",
"[@loiane](https://github.com/loiane)/[**curso-extjs4**](https://github.com/loiane/curso-extjs4)",
":tea: Código Fonte do Curso Gratuito de Ext JS 4",
"[:arrow_upper_right:](http://loiane.com)"
],
[
"58",
"[@felipenmoura](https://github.com/felipenmoura)/[**sos-stackoverflow-se…**](https://github.com/felipenmoura/sos-stackoverflow-search)",
"SOS - StackOverflow Search in your terminal",
""
],
[
"55",
"[@loiane](https://github.com/loiane)/[**masteringextjs**](https://github.com/loiane/masteringextjs)",
":closed_book: Source Code of Mastering Ext JS book",
""
],
[
"54",
"[@talyssonoc](https://github.com/talyssonoc)/[**node-api-boilerplate**](https://github.com/talyssonoc/node-api-boilerplate)",
"Boilerplate for Node web APIs",
""
],
[
"52",
"[@derekstavis](https://github.com/derekstavis)/[**react-vanilla-form**](https://github.com/derekstavis/react-vanilla-form)",
"A simple and efficient form library for React",
"[:arrow_upper_right:](https://www.npmjs.com/package/react-vanilla-form)"
],
[
"50",
"[@loiane](https://github.com/loiane)/[**extjs-crud-grid-spri…**](https://github.com/loiane/extjs-crud-grid-spring-hibernate)",
"Example of a CRUD grid using ExtJS, Spring Framework 3 and Hibernate 3.5",
"[:arrow_upper_right:](http://loianegroner.com/)"
],
[
"49",
"[@vitorbritto](https://github.com/vitorbritto)/[**boilerplates**](https://github.com/vitorbritto/boilerplates)",
"This is my personal Yeoman. A simple jumpstart for my projects",
""
],
[
"47",
"[@fdaciuk](https://github.com/fdaciuk)/[**hoost**](https://github.com/fdaciuk/hoost)",
"Easily manage your virtual hosts",
"[:arrow_upper_right:](https://www.npmjs.com/package/hoost)"
],
[
"46",
"[@raphamorim](https://github.com/raphamorim)/[**imgStatus**](https://github.com/raphamorim/imgStatus)",
"[855bytes] Detect when images have been loaded without jQuery",
"[:arrow_upper_right:](http://raphamorim.com/imgStatus/)"
],
[
"46",
"[@bernarddeluna](https://github.com/bernarddeluna)/[**Formee**](https://github.com/bernarddeluna/Formee)",
"Formee is nothing but a framework to help you develop and customize web based forms. Did you use to spend a lot of time aligning fields and calculating margins and paddings in a quest for a perfect form? No more",
"[:arrow_upper_right:](http://www.formee.org)"
],
[
"46",
"[@raphamorim](https://github.com/raphamorim)/[**inphinity**](https://github.com/raphamorim/inphinity)",
"A infinity scroll without jQuery or other dependency.",
""
],
[
"45",
"[@LFeh](https://github.com/LFeh)/[**kratos-boilerplate**](https://github.com/LFeh/kratos-boilerplate)",
"A simple and fast boilerplate for static projects using Gulp, Pug, Stylus and PostCSS",
""
],
[
"43",
"[@sergiolopes](https://github.com/sergiolopes)/[**ios-zoom-bug-fix**](https://github.com/sergiolopes/ios-zoom-bug-fix)",
"A fix to the famous iOS zoom bug on orientation change",
""
],
[
"42",
"[@robotlolita](https://github.com/robotlolita)/[**boo**](https://github.com/robotlolita/boo)",
"[Unmaintained: please use refinable instead] Prototypical utilities for Object Orientation / Composition",
""
],
[
"41",
"[@pinceladasdaweb](https://github.com/pinceladasdaweb)/[**tweetlight**](https://github.com/pinceladasdaweb/tweetlight)",
"Display your latest tweets with pure JavaScript and PHP OAuth Library.",
"[:arrow_upper_right:](http://www.pinceladasdaweb.com.br/blog/uploads/tweetlight/)"
],
[
"40",
"[@soapdog](https://github.com/soapdog)/[**firefoxos-quick-guid…**](https://github.com/soapdog/firefoxos-quick-guide)",
"A quick guide for Firefox OS app development",
""
],
[
"39",
"[@loiane](https://github.com/loiane)/[**sencha-extjs4-exampl…**](https://github.com/loiane/sencha-extjs4-examples-architect)",
"Sencha ExtJS 4 examples ported to Sencha Architect 2",
""
],
[
"38",
"[@vitorbritto](https://github.com/vitorbritto)/[**tictac**](https://github.com/vitorbritto/tictac)",
"A time manager for tasks",
""
],
[
"36",
"[@pinceladasdaweb](https://github.com/pinceladasdaweb)/[**Ajax-Contact-Form**](https://github.com/pinceladasdaweb/Ajax-Contact-Form)",
"A simple Ajax Contact Form developed in PHP with HTML5 Form validation and pure JavaScript",
""
],
[
"36",
"[@raphamorim](https://github.com/raphamorim)/[**calendario**](https://github.com/raphamorim/calendario)",
":calendar: Check if a day is a workday or holiday",
"[:arrow_upper_right:](https://www.npmjs.com/package/calendario)"
],
[
"36",
"[@vitorbritto](https://github.com/vitorbritto)/[**gomdn**](https://github.com/vitorbritto/gomdn)",
"Don't use W3Schools. Use MDN to search or reference. Seriously!",
""
],
[
"35",
"[@willianjusten](https://github.com/willianjusten)/[**eve**](https://github.com/willianjusten/eve)",
"A simple bot to work with the new Facebook Messenger API using Wit.ai.",
""
],
[
"33",
"[@theuves](https://github.com/theuves)/[**dicio**](https://github.com/theuves/dicio)",
":books: Dicionário de português via linha de comando.",
"[:arrow_upper_right:](https://www.npmjs.com/package/dicio)"
],
[
"33",
"[@vitorbritto](https://github.com/vitorbritto)/[**labs**](https://github.com/vitorbritto/labs)",
"A simple repository to store the codes from my articles, some experiments and other stuff",
""
],
[
"33",
"[@raphamorim](https://github.com/raphamorim)/[**ranza**](https://github.com/raphamorim/ranza)",
"The dependency checker",
"[:arrow_upper_right:](https://www.npmjs.com/package/ranza)"
],
[
"32",
"[@afonsopacifer](https://github.com/afonsopacifer)/[**slush-react-start**](https://github.com/afonsopacifer/slush-react-start)",
":package: Generator for React + ES5 (Browserify) or ES6 (Webpack/Babel)",
""
],
[
"31",
"[@loiane](https://github.com/loiane)/[**ext4-crud-mvc**](https://github.com/loiane/ext4-crud-mvc)",
"BrazilJS Sample Project - Ext JS 4 CRUD MVC Example",
"[:arrow_upper_right:](http://loianegroner.com)"
],
[
"31",
"[@fdaciuk](https://github.com/fdaciuk)/[**hmh**](https://github.com/fdaciuk/hmh)",
":clock10: How many hours?",
"[:arrow_upper_right:](https://www.npmjs.com/package/hmh)"
],
[
"30",
"[@eshiota](https://github.com/eshiota)/[**webaudio_band**](https://github.com/eshiota/webaudio_band)",
"Experiment: A band in your browser, using the Web Audio API and Websockets.",
""
],
[
"29",
"[@vitorbritto](https://github.com/vitorbritto)/[**gruntify**](https://github.com/vitorbritto/gruntify)",
"A Sweet way to use Grunt",
""
],
[
"29",
"[@soapdog](https://github.com/soapdog)/[**memos-for-firefoxos**](https://github.com/soapdog/memos-for-firefoxos)",
"A simple memo taking app for firefox os",
""
],
[
"27",
"[@LFeh](https://github.com/LFeh)/[**piano**](https://github.com/LFeh/piano)",
"Piano Keyboard developed in HTML, CSS and Javascript",
""
],
[
"27",
"[@pinceladasdaweb](https://github.com/pinceladasdaweb)/[**imgur**](https://github.com/pinceladasdaweb/imgur)",
"Upload images to imgur via JavaScript",
"[:arrow_upper_right:](http://www.pinceladasdaweb.com.br/blog/uploads/imgur/)"
],
[
"26",
"[@soapdog](https://github.com/soapdog)/[**guia-rapido-firefox-…**](https://github.com/soapdog/guia-rapido-firefox-os)",
"Código Fonte para o Livro Guia Rápido de Desenvolvimento para Firefox OS",
""
],
[
"25",
"[@loiane](https://github.com/loiane)/[**extjs-crud-grid**](https://github.com/loiane/extjs-crud-grid)",
"ExtJS and Spring Framework CRUD grid example",
"[:arrow_upper_right:](http://loianegroner.com)"
],
[
"25",
"[@loiane](https://github.com/loiane)/[**extjs4-mvc-json-crud…**](https://github.com/loiane/extjs4-mvc-json-crud-php-mysql)",
"ExtJS 4 MVC Example - CRUD Grid with JSON, Ajax, PHP and MySQL",
""
],
[
"24",
"[@coreh](https://github.com/coreh)/[**uid2**](https://github.com/coreh/uid2)",
"",
""
],
[
"24",
"[@willianjusten](https://github.com/willianjusten)/[**hangouts**](https://github.com/willianjusten/hangouts)",
"Links e códigos discutidos através de nossos hangouts.",
""
],
[
"24",
"[@LFeh](https://github.com/LFeh)/[**chess**](https://github.com/LFeh/chess)",
"A modern and light chess game developed with HTML, CSS and Javascript.",
"[:arrow_upper_right:](http://chessjs.trendi.com.br/chess)"
],
[
"21",
"[@LFeh](https://github.com/LFeh)/[**grunt-boilerplate**](https://github.com/LFeh/grunt-boilerplate)",
"Base files for use of Grunt",
""
],
[
"21",
"[@pinceladasdaweb](https://github.com/pinceladasdaweb)/[**behance**](https://github.com/pinceladasdaweb/behance)",
"Behance Portfolio Page with Vanilla JS",
""
],
[
"20",
"[@brenopolanski](https://github.com/brenopolanski)/[**css-comments-sublime-snippets**](https://github.com/brenopolanski/css-comments-sublime-snippets)",
"CSS comments snippets for Sublime Text",
""
],
[
"19",
"[@vitorbritto](https://github.com/vitorbritto)/[**optimus**](https://github.com/vitorbritto/optimus)",
"A lightning-fast way to run your tests with JavaScript.",
""
],
[
"19",
"[@pinceladasdaweb](https://github.com/pinceladasdaweb)/[**Socialight**](https://github.com/pinceladasdaweb/Socialight)",
"Get Social Network Share Counts with Vanilla JS",
""
],
[
"18",
"[@felipenmoura](https://github.com/felipenmoura)/[**js-chroma-key**](https://github.com/felipenmoura/js-chroma-key)",
"A chroma key effect made in JavaScript, HTML5 and CSS3 in 100 lines of js",
""
],
[
"18",
"[@coreh](https://github.com/coreh)/[**iframify**](https://github.com/coreh/iframify)",
"Wraps the given HTML code in an iframe that resizes dynamically to fit its contents.",
""
],
[
"18",
"[@eshiota](https://github.com/eshiota)/[**frontend-patterns**](https://github.com/eshiota/frontend-patterns)",
"A collection of front-end best practices and UI patterns in HTML/CSS/JavaScript",
""
],
[
"17",
"[@pinceladasdaweb](https://github.com/pinceladasdaweb)/[**CSS3-Perspective-Car…**](https://github.com/pinceladasdaweb/CSS3-Perspective-Carousel)",
"An awesome carousel developed on top of jQuery with bit of witchcraft of CSS3.",
"[:arrow_upper_right:](http://www.pinceladasdaweb.com.br/blog/uploads/css3-perspective-carousel/)"
],
[
"17",
"[@loiane](https://github.com/loiane)/[**extjs4-mvc-complex-d…**](https://github.com/loiane/extjs4-mvc-complex-dashboard)",
"ExtJS 4 MVC Complex Dashboard Example",
""
],
[
"16",
"[@sergiolopes](https://github.com/sergiolopes)/[**responsive-play**](https://github.com/sergiolopes/responsive-play)",
"Generate a video to showcase your responsive design.",
""
],
[
"16",
"[@pinceladasdaweb](https://github.com/pinceladasdaweb)/[**isMobile**](https://github.com/pinceladasdaweb/isMobile)",
"Detect Mobile Browsers using pure JavaScript",
""
],
[
"16",
"[@loiane](https://github.com/loiane)/[**extjs-export-excel**](https://github.com/loiane/extjs-export-excel)",
"Export ExtJS DataGrid to Excel",
"[:arrow_upper_right:](http://loiane.com)"
],
[
"15",
"[@vitorbritto](https://github.com/vitorbritto)/[**just**](https://github.com/vitorbritto/just)",
"A simple task runner on top of NodeJS.",
""
],
[
"15",
"[@pinceladasdaweb](https://github.com/pinceladasdaweb)/[**It-s-movie-time**](https://github.com/pinceladasdaweb/It-s-movie-time)",
"Display movies with YTS API and Node.js",
""
],
[
"15",
"[@jaydson](https://github.com/jaydson)/[**js-future-in-the-pre…**](https://github.com/jaydson/js-future-in-the-present)",
"JavaScript's future in the present",
""
],
[
"15",
"[@loiane](https://github.com/loiane)/[**spring-security-extj…**](https://github.com/loiane/spring-security-extjs-login)",
"Integrating Spring Security with ExtJS Login Page",
"[:arrow_upper_right:](http://loiane.com)"
],
[
"15",
"[@afonsopacifer](https://github.com/afonsopacifer)/[**slush-tangerine**](https://github.com/afonsopacifer/slush-tangerine)",
":tangerine: Front-End boilerplate with tangerine flavor.",
""
],
[
"14",
"[@raphamorim](https://github.com/raphamorim)/[**angular-drag-n-drop**](https://github.com/raphamorim/angular-drag-n-drop)",
"Angular Drag and Drop, with no dependency on Jquery or other library.",
"[:arrow_upper_right:](http://raphamorim.com/angular-drag-n-drop/)"
],
[
"14",
"[@pinceladasdaweb](https://github.com/pinceladasdaweb)/[**social**](https://github.com/pinceladasdaweb/social)",
"Simple way to load social sharing buttons",
"[:arrow_upper_right:](http://www.pinceladasdaweb.com.br/blog/uploads/social/)"
],
[
"13",
"[@vitorbritto](https://github.com/vitorbritto)/[**PDFify**](https://github.com/vitorbritto/PDFify)",
"Easily generate a PDF with style from a URL.",
""
],
[
"13",
"[@loiane](https://github.com/loiane)/[**extjs4-jquery**](https://github.com/loiane/extjs4-jquery)",
"Example of how use Ext JS 4 + Jquery together",
"[:arrow_upper_right:](http://loianegroner.com)"
],
[
"13",
"[@pinceladasdaweb](https://github.com/pinceladasdaweb)/[**Node-CEP**](https://github.com/pinceladasdaweb/Node-CEP)",
"Web service that exposes the search page of the Post Office ZIP code of Brazil as an API",
""
],
[
"13",
"[@vitorbritto](https://github.com/vitorbritto)/[**gostack**](https://github.com/vitorbritto/gostack)",
"A pretty simple and easy way to find solutions at StackOverflow.",
""
],
[
"13",
"[@loiane](https://github.com/loiane)/[**sencha-touch2-exampl…**](https://github.com/loiane/sencha-touch2-examples-architect)",
"Sencha Touch 2 examples implemented with Sencha Architect 2",
""
],
[
"13",
"[@felquis](https://github.com/felquis)/[**angular-helperszinho…**](https://github.com/felquis/angular-helperszinhos)",
":green_heart: Helperszinhos",
""
],
[
"12",
"[@eshiota](https://github.com/eshiota)/[**save-my-fotolog**](https://github.com/eshiota/save-my-fotolog)",
"Fotolog is closing on February 20th! Run to the hills... but save your photos and data first. :D",
""
],
[
"12",
"[@vitorbritto](https://github.com/vitorbritto)/[**gofacebook**](https://github.com/vitorbritto/gofacebook)",
"Search for hashtags, contents in groups os fanpages at Facebook",
""
],
[
"12",
"[@raphamorim](https://github.com/raphamorim)/[**just-canvas**](https://github.com/raphamorim/just-canvas)",
"Dancing using JavaScript - Canvas HTML5 Feature",
"[:arrow_upper_right:](http://raphamorim.com/just-canvas)"
],
[
"12",
"[@willianjusten](https://github.com/willianjusten)/[**sublime-preferences**](https://github.com/willianjusten/sublime-preferences)",
"My list of plugins and settings for Sublime Text",
""
],
[
"12",
"[@loiane](https://github.com/loiane)/[**extjs4-ux-paging-too…**](https://github.com/loiane/extjs4-ux-paging-toolbar-resizer)",
"ExtJS 4 Paging Toolbar Resizer combobox",
"[:arrow_upper_right:](http://loianegroner.com)"
],
[
"12",
"[@felquis](https://github.com/felquis)/[**css3d**](https://github.com/felquis/css3d)",
"Estudos a cerca de transformações e animações com CSS3 usando JavaScript",
""
],
[
"12",
"[@robotlolita](https://github.com/robotlolita)/[**javascript-course**](https://github.com/robotlolita/javascript-course)",
"",
""
],
[
"12",
"[@loiane](https://github.com/loiane)/[**extjs4-file-upload-s…**](https://github.com/loiane/extjs4-file-upload-spring)",
"ExtJS 4 File Upload + Spring MVC 3 Example ",
"[:arrow_upper_right:](http://loianegroner.com)"
],
[
"12",
"[@rodrigobranas](https://github.com/rodrigobranas)/[**web-security-present…**](https://github.com/rodrigobranas/web-security-presentation)",
"",
""
],
[
"11",
"[@bernarddeluna](https://github.com/bernarddeluna)/[**sanfona**](https://github.com/bernarddeluna/sanfona)",
"A HTML5 Responsive Experiment",
"[:arrow_upper_right:](http://bernarddeluna.github.io/sanfona)"
],
[
"11",
"[@cmilfont](https://github.com/cmilfont)/[**braziljs**](https://github.com/cmilfont/braziljs)",
"",
"[:arrow_upper_right:](http://www.braziljs.com.br)"
],
[
"11",
"[@pinceladasdaweb](https://github.com/pinceladasdaweb)/[**NodeTwitter**](https://github.com/pinceladasdaweb/NodeTwitter)",
"Display your latest tweets with Node.js and VanillaJS",
"[:arrow_upper_right:](http://nodejs-twitter.herokuapp.com/)"
],
[
"11",
"[@pinceladasdaweb](https://github.com/pinceladasdaweb)/[**Vimeo-Carousel-Galle…**](https://github.com/pinceladasdaweb/Vimeo-Carousel-Gallery)",
"Show videos from Vimeo into a chic gallery with jQuery",
"[:arrow_upper_right:](http://www.pinceladasdaweb.com.br/blog/uploads/vimeo-carousel-gallery/)"
],
[
"11",
"[@filipedeschamps](https://github.com/filipedeschamps)/[**insiderNews**](https://github.com/filipedeschamps/insiderNews)",
"Notícias em tempo-real com gamificação",
"[:arrow_upper_right:](http://www.insidernews.com.br)"
],
[
"10",
"[@raphamorim](https://github.com/raphamorim)/[**firefox-offline-game**](https://github.com/raphamorim/firefox-offline-game)",
"Mozillian fork from Chromium T-Rex Game",
"[:arrow_upper_right:](http://raphamorim.com/firefox-offline-game/)"
],
[
"10",
"[@robotlolita](https://github.com/robotlolita)/[**old-purr**](https://github.com/robotlolita/old-purr)",
"[See: https://github.com/robotlolita/purr] A minimal pure purely prototypical object oriented language.",
""
],
[
"10",
"[@robotlolita](https://github.com/robotlolita)/[**helm**](https://github.com/robotlolita/helm)",
"[WIP!] A safe HTML embedded domain specific language for templating",
""
],
[
"10",
"[@coreh](https://github.com/coreh)/[**js**](https://github.com/coreh/js)",
"A better `node -p`",
""
],
[
"10",
"[@willianjusten](https://github.com/willianjusten)/[**crawler-huge**](https://github.com/willianjusten/crawler-huge)",
":construction: work in progress - A simple crawler that creates a json with urls and take screenshots.",
""
],
[
"10",
"[@gnuwilliam](https://github.com/gnuwilliam)/[**angular-simple-app**](https://github.com/gnuwilliam/angular-simple-app)",
"AngularJS Simple App",
""
],
[
"10",
"[@filipedeschamps](https://github.com/filipedeschamps)/[**cep-promise**](https://github.com/filipedeschamps/cep-promise)",
"Busca por CEP integrado ao banco de dados dos Correios - Node.js e Browser",
""
],
[
"10",
"[@pinceladasdaweb](https://github.com/pinceladasdaweb)/[**instaphotos**](https://github.com/pinceladasdaweb/instaphotos)",
"Display Instagram user feed with PHP, jQuery and Handlebars Template",
"[:arrow_upper_right:](http://www.pinceladasdaweb.com.br/blog/uploads/instaphotos/)"
],
[
"10",
"[@raphamorim](https://github.com/raphamorim)/[**js2c**](https://github.com/raphamorim/js2c)",
"[WIP] Transform Javascript to C ",
""
],
[
"10",
"[@rodrigobranas](https://github.com/rodrigobranas)/[**node-workshop**](https://github.com/rodrigobranas/node-workshop)",
"",
""
],
[
"9",
"[@loiane](https://github.com/loiane)/[**extjs-grid-filter**](https://github.com/loiane/extjs-grid-filter)",
"Example of ExtJS Grid Filters, Spring Framework 3 and Hibernate 3.5.",
"[:arrow_upper_right:](http://loianegroner.com/)"
],
[
"9",
"[@raphamorim](https://github.com/raphamorim)/[**tzu**](https://github.com/raphamorim/tzu)",
"The belt of number conversion for nodejs",
"[:arrow_upper_right:](https://www.npmjs.com/package/tzu)"
],
[
"9",
"[@loiane](https://github.com/loiane)/[**curso-angular2**](https://github.com/loiane/curso-angular2)",
"Código fonte apresentado no curso de Angular 2 gratuito do blog loiane.com - loiane.training",
""
],
[
"9",
"[@afonsopacifer](https://github.com/afonsopacifer)/[**pacificator**](https://github.com/afonsopacifer/pacificator)",
":cop: Adds a standard syntax and indentation to css.",
"[:arrow_upper_right:](https://www.npmjs.com/package/pacificator)"
],
[
"8",
"[@raphamorim](https://github.com/raphamorim)/[**kenobi**](https://github.com/raphamorim/kenobi)",
"Render objects for view engines or static html",
"[:arrow_upper_right:](https://www.npmjs.org/package/kenobi)"
],
[
"8",
"[@afonsopacifer](https://github.com/afonsopacifer)/[**react-comments**](https://github.com/afonsopacifer/react-comments)",
":speech_balloon: A React comment feed.",
"[:arrow_upper_right:](http://afonsopacifer.github.io/react-comments/)"
],
[
"8",
"[@loiane](https://github.com/loiane)/[**extjs4-session-timeo…**](https://github.com/loiane/extjs4-session-timeout)",
"ExtJS 4 session timeout and session management example",
""
],
[
"8",
"[@loiane](https://github.com/loiane)/[**extjs4-mvc-portal**](https://github.com/loiane/extjs4-mvc-portal)",
"ExtJS 4 MVC Portal Example",
""
],
[
"8",
"[@pinceladasdaweb](https://github.com/pinceladasdaweb)/[**Feeder**](https://github.com/pinceladasdaweb/Feeder)",
"A VanillaJS plugin that work like a Feed Reader",
""
],
[
"8",
"[@vitorbritto](https://github.com/vitorbritto)/[**gone**](https://github.com/vitorbritto/gone)",
"[WIP!] A simple way to deploy files. Ready, Set, Gone!",
"[:arrow_upper_right:](http://vitorbritto.github.io/gone)"
],
[
"8",
"[@loiane](https://github.com/loiane)/[**extjs4-grid-header-t…**](https://github.com/loiane/extjs4-grid-header-tooltip)",
"Demonstrates how to add a tooltip to a grid header in Ext JS 4.",
"[:arrow_upper_right:](http://loianegroner.com)"
],
[
"8",
"[@robotlolita](https://github.com/robotlolita)/[**promises-benchmark**](https://github.com/robotlolita/promises-benchmark)",
"Benchmark for real-world scenarios for Promises/A+ & alternatives",
""
],
[
"8",
"[@felipenmoura](https://github.com/felipenmoura)/[**Root3D**](https://github.com/felipenmoura/Root3D)",
"Root3D, the CSS3D environment",
"[:arrow_upper_right:](http://felipenmoura.org/projects/root3d)"
],
[
"8",
"[@cmilfont](https://github.com/cmilfont)/[**tryingnode**](https://github.com/cmilfont/tryingnode)",
"",
"[:arrow_upper_right:](http://www.milfont.org/tech/2011/01/04/problemas-com-prototype-no-javascript/)"
],
[
"7",
"[@welksonramos](https://github.com/welksonramos)/[**postcss-brazilian-portuguese-stylesheets**](https://github.com/welksonramos/postcss-brazilian-portuguese-stylesheets)",
":scream: PostCSS plugin for writing CSS in Brazilian Portuguese",
""
],
[
"7",
"[@pinceladasdaweb](https://github.com/pinceladasdaweb)/[**minigram**](https://github.com/pinceladasdaweb/minigram)",
"A simple plugin to display your latest Instagram photos with Vanilla JS",
"[:arrow_upper_right:](http://pinceladasdaweb.github.io/minigram)"
],
[
"7",
"[@soapdog](https://github.com/soapdog)/[**openwebapp-mozrespos…**](https://github.com/soapdog/openwebapp-mozrespostas-prontas)",
"Um webapp com respostas prontas para utilizar em emails da Mozilla Brasil",
""
],
[
"7",
"[@loiane](https://github.com/loiane)/[**ionic-cordova-phoneg…**](https://github.com/loiane/ionic-cordova-phonegap-examples)",
"Some ionic and cordova/phonegap examples",
""
],
[
"7",
"[@willianjusten](https://github.com/willianjusten)/[**svg-gulp-optimizer**](https://github.com/willianjusten/svg-gulp-optimizer)",
"Some tests to optimize svg using Gulp, svgo, gulp-svgfallback and gulp-svgstore.",
""
],
[
"7",
"[@loiane](https://github.com/loiane)/[**Ext.ux.grid.FilterBa…**](https://github.com/loiane/Ext.ux.grid.FilterBar)",
"filter bar plugin for extjs 4",
""
],
[
"7",
"[@loiane](https://github.com/loiane)/[**extjs4-mvc-paging-gr…**](https://github.com/loiane/extjs4-mvc-paging-grid)",
"ExtJS 4 MVC Paging Grid Example",
""
],
[
"7",
"[@loiane](https://github.com/loiane)/[**extjs-file-import-sp…**](https://github.com/loiane/extjs-file-import-spring)",
"Spring File Upload Example Integrated with ExtJS FileUpload Form",
"[:arrow_upper_right:](http://loianegroner.com)"
],
[
"7",
"[@LFeh](https://github.com/LFeh)/[**survey**](https://github.com/LFeh/survey)",
"Pesquisa de mercado realizada entre Desenvolvedores Front-End.",
"[:arrow_upper_right:](http://www.felipefialho.com/survey)"
],
[
"7",
"[@loiane](https://github.com/loiane)/[**extjs-rowexpander**](https://github.com/loiane/extjs-rowexpander)",
"ExtJS Row Expander plugin example - using Spring 3 on server side",
"[:arrow_upper_right:](http://loianegroner.com)"
],
[
"7",
"[@loiane](https://github.com/loiane)/[**extjs6-examples**](https://github.com/loiane/extjs6-examples)",
"Sencha Ext JS 6 examples",
""
],
[
"7",
"[@cmilfont](https://github.com/cmilfont)/[**cordel_old**](https://github.com/cmilfont/cordel_old)",
"",
""
],
[
"7",
"[@loiane](https://github.com/loiane)/[**extjs-grid-remote-so…**](https://github.com/loiane/extjs-grid-remote-sorting)",
"Example of a paging grid + remote sorting using ExtJS, Spring Framework 3 and Hibernate 3.5.",
"[:arrow_upper_right:](http://loianegroner.com/)"
],
[
"7",
"[@raphamorim](https://github.com/raphamorim)/[**canvas-experiments**](https://github.com/raphamorim/canvas-experiments)",
"Some experiments using Canvas HTML5 technology.",
""
],
[
"7",
"[@pinceladasdaweb](https://github.com/pinceladasdaweb)/[**YPlaylist**](https://github.com/pinceladasdaweb/YPlaylist)",
"Youtube Playlist with jQuery",
"[:arrow_upper_right:](http://www.pinceladasdaweb.com.br/blog/uploads/yplaylist/)"
],
[
"7",
"[@soapdog](https://github.com/soapdog)/[**firefoxos-sample-gam…**](https://github.com/soapdog/firefoxos-sample-game-apple-catcher)",
"Sample game for Firefox OS",
""
],
[
"7",
"[@pinceladasdaweb](https://github.com/pinceladasdaweb)/[**Lastfm-Recent-Tracks**](https://github.com/pinceladasdaweb/Lastfm-Recent-Tracks)",
"Get User Recent Tracks in Last.fm with jQuery and Handlebars.",
"[:arrow_upper_right:](http://www.pinceladasdaweb.com.br/blog/uploads/lastfm/)"
],
[
"7",
"[@pinceladasdaweb](https://github.com/pinceladasdaweb)/[**VCountdown**](https://github.com/pinceladasdaweb/VCountdown)",
"Show how many characters remaining in a HTML with pure JavaScript",
""
],
[
"6",
"[@theuves](https://github.com/theuves)/[**git-cometer**](https://github.com/theuves/git-cometer)",
":us: Uma ferramenta para escrever a mensagem de um commit em português, porém envia-lo em inglês.",
""
],
[
"6",
"[@diogomoretti](https://github.com/diogomoretti)/[**slush-ixqueleto**](https://github.com/diogomoretti/slush-ixqueleto)",
"Generate a new project using Stylus and Gulp",
"[:arrow_upper_right:](http://diogomoretti.github.io/slush-ixqueleto)"
],
[
"6",
"[@raphamorim](https://github.com/raphamorim)/[**aQuery**](https://github.com/raphamorim/aQuery)",
"A jQuery-like, client library less than 1kb",
""
],
[
"6",
"[@vquaiato](https://github.com/vquaiato)/[**mvcsummit2011**](https://github.com/vquaiato/mvcsummit2011)",
"mvc summit 2011 website",
"[:arrow_upper_right:](http://mvcsummit.net)"
],
[
"6",
"[@diogomoretti](https://github.com/diogomoretti)/[**workshop-ufsc**](https://github.com/diogomoretti/workshop-ufsc)",
"My workshop files in Seccom 2014",
""
],
[
"6",
"[@eshiota](https://github.com/eshiota)/[**eventdispatcher**](https://github.com/eshiota/eventdispatcher)",
"A way to handle the communication of an entire system using a single, central module, using the Signals and slots type of implementation.",
""
],
[
"6",
"[@jaydson](https://github.com/jaydson)/[**marked-metadata**](https://github.com/jaydson/marked-metadata)",
"Markdown parser (using marked) with metadata header support",
""
],
[
"6",
"[@pinceladasdaweb](https://github.com/pinceladasdaweb)/[**frontend-starter-kit**](https://github.com/pinceladasdaweb/frontend-starter-kit)",
"A lightweight Front End starter kit for create awesome web apps",
""
],
[
"6",
"[@pinceladasdaweb](https://github.com/pinceladasdaweb)/[**DribbbleFolio**](https://github.com/pinceladasdaweb/DribbbleFolio)",
"Dribbble Portfolio Page developed with Vanilla JS",