forked from denoland/dotland
-
Notifications
You must be signed in to change notification settings - Fork 0
/
database.json
3382 lines (3382 loc) · 89.8 KB
/
database.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
{
"a1": {
"type": "github",
"owner": "maheshkareeya",
"repo": "a1",
"desc": "A1 Is Micro framework for rapid API Development in Deno"
},
"abc": {
"type": "github",
"owner": "zhmushan",
"repo": "abc",
"desc": "A better Deno framework to create web application"
},
"accepts": {
"type": "github",
"owner": "ako-deno",
"repo": "accepts",
"desc": "Higher level content negotiation for Deno."
},
"actdb": {
"type": "github",
"owner": "searchableguy",
"repo": "actdb",
"desc": "A simple nosql reactive db or database 🐈."
},
"adka": {
"type": "github",
"owner": "apiel",
"repo": "adka",
"desc": "Static site generator using JSX without React."
},
"airtable": {
"type": "github",
"owner": "grikomsn",
"repo": "airtable-deno",
"desc": "Unofficial Airtable Client for Deno"
},
"alosaur": {
"type": "github",
"owner": "irustm",
"repo": "alosaur",
"desc": "Alosaur - Deno web framework 🦖."
},
"amqp": {
"type": "github",
"owner": "lenkan",
"repo": "deno-amqp",
"desc": "AMQP 0.9.1"
},
"api": {
"type": "github",
"owner": "maheshkareeya",
"repo": "api",
"desc": "Promise based HTTP client for the Deno. ༼ つ ◕_◕ ༽つ"
},
"appwrite": {
"type": "github",
"owner": "appwrite",
"repo": "sdk-for-deno",
"desc": "Official Deno SDK for the Appwrite open-source backend server 🚀"
},
"aqua": {
"type": "github",
"owner": "l2ig",
"repo": "aqua",
"desc": "A minimal and fast web framework for Deno 🏃"
},
"argon2": {
"type": "github",
"owner": "fdionisi",
"repo": "deno-argon2",
"desc": "Deno library for hashing passwords using Argon2"
},
"args": {
"type": "github",
"owner": "KSXGitHub",
"repo": "deno-args",
"path": "/lib",
"desc": "Extensible CLI arguments parser for Deno with intelligent TypeScript inference"
},
"arkoren": {
"type": "github",
"owner": "arkoren",
"repo": "framework",
"desc": "The next-generation type-safe web framework."
},
"arrays": {
"type": "github",
"owner": "damianperera",
"repo": "ts-arrays",
"desc": "Provides support for common Array operations."
},
"ascii_table": {
"type": "github",
"owner": "eeve",
"repo": "ascii_table",
"desc": "Quickly format table in ASCII."
},
"ask": {
"type": "github",
"owner": "jozsefsallai",
"repo": "ask",
"desc": "Interactive command-line prompts for Deno."
},
"async_ray": {
"type": "github",
"owner": "rpgeeganage",
"repo": "async-ray-deno",
"desc": "Provide async/await callbacks for Array methods."
},
"attain": {
"type": "github",
"owner": "aaronwlee",
"repo": "attain",
"desc": "A middleware web framework, inspired by express.js"
},
"attain_graphql": {
"type": "github",
"owner": "aaronwlee",
"repo": "attain-graphql",
"desc": "A simple graphql middleware for Attain framework."
},
"audit": {
"type": "github",
"owner": "maximousblk",
"repo": "audit",
"desc": "Add an audit notification for insecure versions of your modules"
},
"auto_bind": {
"type": "github",
"owner": "jgchk",
"repo": "auto-bind",
"desc": "Automatically bind methods to their class instance"
},
"autopilot": {
"type": "github",
"owner": "divy-work",
"repo": "autopilot-deno",
"desc": "A cross-platform desktop automation library"
},
"await_mutex": {
"type": "github",
"owner": "Matthew-Smith",
"repo": "awaitable_mutex",
"desc": "Blocking execution of a section of code to one at a time"
},
"axiod": {
"type": "github",
"owner": "roonie007",
"repo": "axiod",
"desc": "Promise based HTTP client for Deno inpired by axios"
},
"azure_functions": {
"type": "github",
"owner": "anthonychu",
"repo": "azure-functions-deno-worker",
"desc": "Deno on Azure Functions"
},
"base64": {
"type": "github",
"owner": "chiefbiiko",
"repo": "base64",
"desc": "base64 strings from/to Uint8Arrays"
},
"bb64": {
"type": "github",
"owner": "denjucks",
"repo": "bb64",
"desc": "A better base64 encoder and decoder for Deno for easily encoding strings, Uint8Arrays, and files, including MIME types into encoding"
},
"bcrypt": {
"type": "github",
"owner": "jamesbroadberry",
"repo": "deno-bcrypt",
"desc": "BCrypt support for hashing and checking passwords"
},
"behin": {
"type": "github",
"owner": "lolivei",
"repo": "behin",
"desc": "OTP - One-time password for Deno 🦕 (TOTP/HOTP)"
},
"berror": {
"type": "github",
"owner": "baptistemarchand",
"repo": "berror",
"desc": "Rich Errors including chain of causes, metadata and easy logging"
},
"bigfloat": {
"type": "github",
"owner": "davidmartinez10",
"repo": "bigfloat-deno",
"desc": "A library for arbitrary precision decimal floating point arithmetic that can exactly represent all decimal fractions, unlike JavaScript's number data type which is 64-bit binary floating point."
},
"binary": {
"type": "github",
"owner": "bqio",
"repo": "binary",
"desc": "Binary library for Deno."
},
"blake2b": {
"type": "github",
"owner": "chiefbiiko",
"repo": "blake2b",
"desc": "BLAKE2b implemented in WebAssembly."
},
"blox": {
"type": "github",
"owner": "goldyydev",
"repo": "deno-blox",
"desc": "A Roblox API Wrapper in Deno."
},
"bls12_381": {
"type": "github",
"owner": "paulmillr",
"repo": "noble-bls12-381",
"desc": "bls12-381, a pairing-friendly elliptic curve construction."
},
"boolbase": {
"type": "github",
"owner": "DenoBRComunitty",
"repo": "boolbase",
"desc": "BoolBase, only two functions: one that returns true, one that returns false."
},
"brotli": {
"type": "github",
"owner": "denosaurs",
"repo": "deno_brotli",
"desc": "A brotli compression and decompression module implemented in WASM"
},
"bsv": {
"type": "github",
"owner": "bitcartel",
"repo": "bsv-deno",
"desc": "Bitcoin SV library for Deno"
},
"buffer": {
"type": "github",
"owner": "socket-deno",
"repo": "buffer",
"desc": "Extreme buffer module for deno"
},
"bump": {
"type": "github",
"owner": "iamnathanj",
"repo": "bump",
"desc": "Versioning and tagging tool for Deno projects"
},
"bwt": {
"type": "github",
"owner": "chiefbiiko",
"repo": "bwt",
"desc": "Better Web Token, a web token format, generation, and verification scheme"
},
"bytes_formater": {
"type": "github",
"owner": "manyuanrong",
"repo": "bytes_formater",
"desc": "Deno Bytes Formater"
},
"bzfquery.js": {
"type": "github",
"owner": "The-Noah",
"repo": "bzfquery.js",
"desc": "JavaScript/TypeScript version of bzfquery for Deno"
},
"caller": {
"type": "github",
"owner": "apiel",
"repo": "caller",
"desc": "Return the filepath of the parent function."
},
"carol": {
"type": "github",
"owner": "uki00a",
"repo": "carol",
"desc": "Build cross-platform desktop apps with Deno and HTML."
},
"case": {
"type": "github",
"owner": "justjavac",
"repo": "deno-change-case",
"desc": "Convert strings between camelCase, PascalCase, Title Case, snake_case, lowercase, UPPERCASE, CONSTANT_CASE and more."
},
"case_style": {
"type": "github",
"owner": "zekth",
"repo": "deno_case_style",
"desc": "A string validator and formater for case Style"
},
"casualdb": {
"type": "github",
"owner": "campvanilla",
"repo": "casualdb",
"desc": "Simple JSON database for Deno with type-safety. Inspired by lowdb, with a mongoose-like API."
},
"cat_you": {
"type": "github",
"owner": "SuperC03",
"repo": "CatYou-Deno",
"desc": "Every Framework Needs a Cat API"
},
"caught": {
"type": "github",
"owner": "rsp",
"repo": "deno-caught",
"desc": "This module lets you attach empty rejection handlers to promises to avoid errors when we want to handle rejections asynchronously."
},
"census": {
"type": "github",
"owner": "being-curious",
"repo": "census",
"desc": "Count modules in https://deno.land/x."
},
"chacha20": {
"type": "github",
"owner": "chiefbiiko",
"repo": "chacha20",
"desc": "ChaCha20 as defined by RFC 8439"
},
"chacha20_poly1305": {
"type": "github",
"owner": "chiefbiiko",
"repo": "chacha20-poly1305",
"desc": "ChaCha20-Poly1305 as defined by RFC 8439"
},
"checksum": {
"type": "github",
"owner": "manyuanrong",
"repo": "deno-checksum",
"desc": "deno-checksum"
},
"chunked": {
"type": "github",
"owner": "aynik",
"repo": "deno-chunked",
"desc": "A set of functions to read ArrayBuffer chunk by chunk or buffered until eof."
},
"ci": {
"type": "github",
"owner": "justjavac",
"repo": "deno-ci",
"desc": "Get details about the current Continuous Integration environment."
},
"cli_spinners": {
"type": "github",
"owner": "ameerthehacker",
"repo": "cli-spinners",
"desc": "Awesome deno terminal spinners"
},
"cliffy": {
"type": "github",
"owner": "c4spar",
"repo": "deno-cliffy",
"desc": "Command line framework for Deno."
},
"clipboard": {
"type": "github",
"owner": "rsp",
"repo": "deno-clipboard",
"desc": "Deno clipboard library"
},
"clone": {
"type": "github",
"owner": "ekaragodin",
"repo": "clone",
"desc": "A simple utility for the convenient clone."
},
"cmd": {
"type": "github",
"owner": "Acathur",
"repo": "cmd",
"desc": "Commander.js (command-line interfaces) for Deno."
},
"cobalt": {
"type": "github",
"owner": "CIDARO",
"repo": "cobalt",
"desc": "Simple but awesome LRU cache for Deno, named after the bluest color."
},
"collections": {
"type": "github",
"owner": "hayd",
"repo": "deno-collections",
"desc": "A utility to handle collections"
},
"color": {
"type": "github",
"owner": "maheshkareeya",
"repo": "color",
"desc": "Write Colourful Messages In console. It's easy to learn and use. ༼ つ ◕_◕ ༽つ"
},
"colors": {
"type": "github",
"owner": "maheshkareeya",
"repo": "colors",
"desc": "Material Design Colors ༼ つ ◕_◕ ༽つ"
},
"commands": {
"type": "github",
"owner": "buttercubz",
"repo": "Commands",
"desc": "Create commands shortcuts for Deno"
},
"compose": {
"type": "github",
"owner": "KSXGitHub",
"repo": "deno-compose",
"desc": "pipe, pipeline, and compose functions with 64 overloads per function"
},
"computed_types": {
"type": "github",
"owner": "neuledge",
"repo": "computed-types",
"desc": "🦩 Joi like validation for TypeScript"
},
"conf": {
"type": "github",
"owner": "lemarier",
"repo": "deno-conf",
"desc": "Simple config handling for your app or module"
},
"config": {
"type": "github",
"owner": "eankeen",
"repo": "config",
"desc": "Load dotfiles / modules for a project consistently"
},
"content_type": {
"type": "github",
"owner": "ako-deno",
"repo": "content_type",
"desc": "Create and parse HTTP Content-Type header according to RFC 7231 for Deno"
},
"context": {
"type": "github",
"owner": "code-hex",
"repo": "deno-context",
"desc": "🦕 Propagate deadlines, a cancellation and other request-scoped values to multiple promise. The behaviour is like Go's context"
},
"convertTime": {
"type": "github",
"owner": "guptamohit004",
"repo": "convert_time",
"desc": "Convert Time from one Timezone to Another based on User's Location using DENO. Useful when a particular time is to be shown for a user from Different Country."
},
"cordeno": {
"type": "github",
"owner": "cordeno",
"repo": "cordeno",
"desc": "A Discord API wrapper for developing discord bots using the Deno runtime."
},
"core": {
"type": "github",
"owner": "denoland",
"repo": "deno",
"desc": "A secure runtime for JavaScript and TypeScript."
},
"cors": {
"type": "github",
"owner": "tajpouria",
"repo": "cors",
"desc": "Providing a middleware that can be used to enable CORS with various options"
},
"cotton": {
"type": "github",
"owner": "rahmanfadhil",
"repo": "cotton",
"desc": "SQL Database Toolkit for Deno"
},
"countryfinder": {
"type": "github",
"owner": "yonas-g",
"repo": "country-list",
"desc": "🦕 module to get a list of world countries and their information."
},
"coward": {
"type": "github",
"owner": "fox-cat",
"repo": "coward",
"desc": "🐔 Coward is a Deno module for easy interaction with the Discord API. "
},
"cowsay": {
"type": "github",
"owner": "fakoua",
"repo": "cowsay",
"desc": "Configurable talking cow for Deno"
},
"create_deno_plugin": {
"type": "github",
"owner": "chiefbiiko",
"repo": "create-deno-plugin",
"desc": "Scaffolding for deno native plugins"
},
"cron": {
"type": "github",
"owner": "wrzonki",
"repo": "deno-cron",
"desc": "Simple cron scheduler for Deno"
},
"crontab": {
"type": "github",
"owner": "jchen1",
"repo": "crontab-deno",
"desc": "cron-based job runner for deno"
},
"crony": {
"type": "github",
"owner": "uchm4n",
"repo": "crony",
"desc": "Manage all your cron jobs in one file"
},
"cross_env": {
"type": "github",
"owner": "axetroy",
"repo": "deno_cross_env",
"desc": "A tool for setting environment variables across platforms"
},
"csp": {
"type": "github",
"owner": "CreatCodeBuild",
"repo": "csp",
"desc": "A CSP implementation that works in Browser, Node and Deno that has 0 dependencies. Provide Channel and select function."
},
"csv": {
"type": "github",
"owner": "vslinko",
"repo": "deno-csv",
"desc": "Streaming API for reading and writing CSV"
},
"cuid": {
"type": "github",
"owner": "grantcarthew",
"repo": "deno-cuid",
"desc": "Collision-resistant ids optimized for horizontal scaling and performance"
},
"currency_finder": {
"type": "github",
"owner": "yeukfei02",
"repo": "currencyFinder",
"desc": "find currency information in deno"
},
"cursor": {
"type": "github",
"owner": "iamnathanj",
"repo": "cursor",
"desc": "ANSI control sequences for your terminal cursor"
},
"cursornext": {
"type": "github",
"owner": "clitetailor",
"repo": "cursornext",
"path": "/deno",
"desc": "A minimalist library for parsing"
},
"curve25519": {
"type": "github",
"owner": "chiefbiiko",
"repo": "curve25519",
"desc": "djb's Curve25519 in TypeScript"
},
"dactyl": {
"type": "github",
"owner": "liamtan28",
"repo": "dactyl",
"desc": "Backend REST web framework for Deno, built on top of Oak"
},
"dash": {
"type": "github",
"owner": "xpyxel",
"repo": "dash",
"desc": "Fast, simple, and efficient LRU cache library for Deno."
},
"databatcher": {
"type": "github",
"owner": "allain",
"repo": "deno-databatcher",
"desc": "The ideas of DataLoader but applied to both loading and saving."
},
"dataformsjs": {
"type": "github",
"owner": "dataformsjs",
"repo": "dataformsjs",
"desc": "A minimal JavaScript Framework and standalone components for rapid development of high quality websites and single page applications."
},
"datauri": {
"type": "github",
"owner": "data-uri",
"repo": "datauri-deno",
"desc": "Generate Data URI schemes."
},
"date_fns": {
"type": "github",
"owner": "date-fns",
"repo": "date-fns",
"path": "/src",
"desc": "Modern JavaScript date utility library"
},
"datetoken": {
"type": "github",
"owner": "sonirico",
"repo": "datetoken.js",
"path": "/src",
"desc": "datetoken is a time toolkit for deno and typescript, with support for relative deltas and string parsing"
},
"dblapi.ts": {
"type": "github",
"owner": "zSnails",
"repo": "dblapi.ts",
"desc": "TypeScript top.gg api wrapper"
},
"deamon": {
"type": "github",
"owner": "manyuanrong",
"repo": "deno-deamon",
"desc": "Make the Deno program run in the background"
},
"debuglog": {
"type": "github",
"owner": "rista404",
"repo": "deno-debug",
"desc": "Debug utility for deno. Under development."
},
"dedupe": {
"type": "github",
"owner": "Sab94",
"repo": "dedupe",
"desc": "removes duplicates from your array."
},
"dejs": {
"type": "github",
"owner": "syumai",
"repo": "dejs",
"desc": "ejs template engine for deno."
},
"deku": {
"type": "github",
"owner": "yisar",
"repo": "deku",
"desc": "No bundle dev server for es modules."
},
"delay": {
"type": "github",
"owner": "vincentvictoria",
"repo": "delay",
"desc": "delay - ES Module for Deno, Node and Web"
},
"dem": {
"type": "github",
"owner": "syumai",
"repo": "dem",
"desc": "A module version manager for Deno."
},
"denet": {
"type": "github",
"owner": "ryaangu",
"repo": "denet",
"desc": "Easy Game Networking module for Deno."
},
"denjucks": {
"type": "github",
"owner": "denjucks",
"repo": "denjucks",
"desc": "A powerful and easy to use templating engine ported from Mozilla's Nunjucks"
},
"deno": {
"type": "github",
"owner": "denoland",
"repo": "deno",
"desc": "A secure runtime for JavaScript and TypeScript."
},
"deno_app_setuper": {
"type": "github",
"owner": "alreadyExisted",
"repo": "deno_app_setuper",
"desc": "A CLI to setup apps like a Create React App."
},
"deno_aws_sign_v4": {
"type": "github",
"owner": "silver-xu",
"repo": "deno-aws-sign-v4",
"desc": "Generates AWS Signature V4 for AWS low-level REST APIs"
},
"deno_check_thai_pid": {
"type": "github",
"owner": "thiti-y",
"repo": "deno-check-thai-pid",
"desc": "Check thai personal ID."
},
"deno_check_updates": {
"type": "github",
"owner": "fzwael",
"repo": "deno-check-updates",
"desc": "Automatically checks deno dependencies versions from import maps file."
},
"deno_correiobr": {
"type": "github",
"owner": "rafaelferres",
"repo": "deno-correiobr",
"desc": "Complete module to consult information about the zip code - calculate the price and delivery times of orders and also perform their tracking"
},
"deno_cron": {
"type": "github",
"owner": "rbrahul",
"repo": "deno_cron",
"desc": "Cron Job Scheduler - to write human readable cron syntax with tons of flexibility"
},
"deno_deblong": {
"type": "github",
"owner": "nusendra",
"repo": "deno-deblong",
"desc": "another simple rest api with deno"
},
"deno_dinvishesh": {
"type": "github",
"owner": "vinodnimbalkar",
"repo": "deno-dinvishesh",
"desc": "A simple deno module which returns marathi dinvishesh"
},
"deno_dotenv": {
"type": "github",
"owner": "PodaruDragos",
"repo": "deno_dotenv",
"desc": "dotenv for Deno, with exapnd capabilities"
},
"deno_flatten": {
"type": "github",
"owner": "yanislavgalyov",
"repo": "deno-flatten",
"desc": "A recursive array flattening function"
},
"deno_giphy_api": {
"desc": "giphy api in deno",
"owner": "yeukfei02",
"repo": "deno-giphy-api",
"type": "github"
},
"deno_google_protobuf": {
"type": "github",
"owner": "marcushultman",
"repo": "deno-google-protobuf",
"desc": "Protocol Buffers - Google's data interchange format"
},
"deno_graphql": {
"type": "github",
"owner": "cvng",
"repo": "deno_graphql",
"desc": "GraphQL HTTP middlewares for Deno"
},
"deno_gui": {
"type": "github",
"owner": "fakoua",
"repo": "deno_gui",
"desc": "Deno Web GUI"
},
"deno_hidefile": {
"type": "github",
"owner": "rafaelferres",
"repo": "deno-hidefile",
"desc": "Create hidden file or folder in Deno 🦕"
},
"deno_hoarders": {
"type": "github",
"owner": "searchableguy",
"repo": "deno-hoarders",
"desc": "A simple utility to import every external deno module from deno/x/ 🚒."
},
"deno_http_router": {
"type": "github",
"owner": "yuenc",
"repo": "deno_http_router",
"desc": "deno http router"
},
"deno_http_server": {
"type": "github",
"owner": "pandres95",
"repo": "deno-http-server",
"desc": "Minimal HTTP Server for Deno"
},
"deno_imagemagick": {
"type": "github",
"owner": "leonelv",
"repo": "deno-imagemagick",
"desc": "Deno port of the WASM library for ImageMagick 🦕"
},
"deno_init": {
"type": "github",
"owner": "maxuuell",
"repo": "deno_init",
"desc": "The executable to set up a deno project 🦕"
},
"deno_lodash": {
"type": "github",
"owner": "alirealasad",
"repo": "deno_lodash",
"desc": "Lodash for the Deno via import statement"
},
"deno_log": {
"type": "github",
"owner": "rafaelferres",
"repo": "deno-log",
"desc": "Lightweight logger with an extensible configuration 🦕"
},
"deno_matrix": {
"type": "github",
"owner": "anirudhgiri",
"repo": "deno-matrix",
"desc": "🦕 Lightweight Deno Library To Handle Matrices 🦖"
},
"deno_minimist": {
"type": "github",
"owner": "FaberVitale",
"repo": "deno_minimist",
"desc": "💾 Parses command line arguments. Port & rewrite of the node library minimist"
},
"deno_notify": {
"type": "github",
"owner": "PandawanFr",
"repo": "deno_notify",
"desc": "Send desktop notifications on all platforms in Deno"
},
"deno_pixabay": {
"type": "github",
"owner": "yeukfei02",
"repo": "deno-pixabay",
"desc": "search image and video from pixabay in deno"
},
"deno_riot": {
"type": "github",
"owner": "rafaelferres",
"repo": "deno-riot",
"desc": "League of legends api wrapper"
},
"deno_scripts": {
"type": "github",
"owner": "PabloSzx",
"repo": "deno_scripts",
"desc": "Type-safe centralized Deno project scripts 🦕"
},
"deno_search": {
"type": "github",
"owner": "etopiei",
"repo": "deno_search",
"desc": "A CLI tool to search for third party packages on deno.land"
},
"deno_string_validator": {
"type": "github",
"owner": "okwudav",
"repo": "deno-string-validator",
"desc": "String validation for Deno, inspired by Validator.js => https://github.com/validatorjs/validator.js"
},
"deno_structured_logging": {
"type": "github",
"owner": "Yamboy1",
"repo": "deno-structured-logging",
"desc": "A structured logging module for Deno"
},
"deno_twitter_api": {
"type": "github",
"owner": "stefanuros",
"repo": "deno_twitter_api",
"desc": "A module to make accessing the Twitter Developer Api easy"
},
"deno_validator": {
"type": "github",
"owner": "parasg1999",
"repo": "deno-validator",
"desc": "A String Validator for deno inspired by validator.js"
},
"deno_weather": {
"type": "github",
"owner": "yeukfei02",
"repo": "deno-weather",
"desc": "get current weather by city name, state and country code"
},
"deno_windows": {
"type": "github",
"owner": "rafaelferres",
"repo": "deno-windows",
"desc": "Windows Service controller for Deno."
},
"denock": {
"type": "github",
"owner": "sachacr",
"repo": "denock",
"desc": "Denock can be used to test modules that perform HTTP requests in isolation. It intercept HTTP requests and respond with the mock you specified"
},
"denoconfig": {
"type": "github",
"owner": "rclarey",
"repo": "deno-emacs",
"desc": "A small cli tool to generate a tsconfig.json that allows editors to understand deno."
},
"denocord": {
"type": "github",
"owner": "Denocord",
"repo": "Denocord",
"desc": "A fast, strongly typed and versatile Discord API wrapper for the Deno runtime."
},
"denodate": {
"type": "github",
"owner": "t-heu",
"repo": "denodate",
"desc": "Deno module for Intl-based dates"
},
"denodb": {
"type": "github",
"owner": "eveningkid",
"repo": "denodb",
"desc": "MySQL, SQLite and PostgreSQL ORM for Deno"
},
"denoenv": {
"type": "github",
"owner": "rubiin",
"repo": "deno-env",
"desc": "Deno module for reading env files with added options"
},
"denof": {
"type": "github",
"owner": "r37r0m0d3l",
"repo": "denof",
"desc": "Syntactic sugar for asynchronous functions, promises, generators and synchronous functions."
},
"denoforge": {
"type": "github",
"owner": "denjucks",
"repo": "denoforge",
"desc": "Deno data science library similar to Python's Pandas. Port of the NodeJS library data-forge"
},
"denofun": {
"type": "github",
"owner": "galkowskit",
"repo": "denofun",
"path": "/lib",
"desc": "Small utility library for Deno containing functions, monads and other fun stuff."
},
"denoget": {
"type": "github",
"owner": "syumai",
"repo": "denoget",
"desc": "denoget installs executable deno script."
},
"denoliver": {
"type": "github",
"owner": "joakimunge",
"repo": "denoliver",
"desc": "A simple, dependency free web server for Deno"
},
"denologger": {
"type": "github",
"owner": "wuperguy",
"repo": "denologger",
"desc": "An easy to use log formatter tool for Deno"
},
"denomander": {
"type": "github",
"owner": "siokas",
"repo": "denomander",
"desc": "Deno command-line interfaces inspired from commander.js"
},
"denomon": {
"type": "github",
"owner": "remy",
"repo": "denomon",
"desc": "Reload automatically. A port of nodemon"
},
"denon": {
"type": "github",
"owner": "denosaurs",
"repo": "denon",
"desc": "denon is the deno replacement for nodemon providing a feature packed and easy to use experience."
},
"denosaur": {
"type": "github",
"owner": "ClementD64",
"repo": "denosaur",
"desc": "Yet another web framework"
},
"denotrain": {
"type": "github",
"owner": "Caesar2011",
"repo": "denotrain",
"desc": "An easy to use webserver engine like express in nodejs fully written in Typescript."
},
"denotrie": {
"type": "github",
"owner": "silver-xu",
"repo": "deno-trie",
"desc": "Deno implementation of Trie for faster string searches."
},
"denotrodon": {
"type": "github",
"owner": "jabernardo",
"repo": "denotrodon",
"desc": "Bare Minimum Command-Line (CLI) Application Skeleton"
},
"denova": {
"type": "github",
"owner": "viandwi24",
"repo": "denova",