forked from denoland/dotland
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdatabase.json
1437 lines (1437 loc) · 38.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
{
"abc": {
"type": "github",
"owner": "zhmushan",
"repo": "abc",
"desc": "A better Deno framework to create web application"
},
"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"
},
"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."
},
"await_mutex": {
"type": "github",
"owner": "Matthew-Smith",
"repo": "awaitable_mutex",
"desc": "Blocking execution of a section of code to one at a time"
},
"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"
},
"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."
},
"blake2b": {
"type": "github",
"owner": "chiefbiiko",
"repo": "blake2b",
"desc": "BLAKE2b implemented in WebAssembly."
},
"bls12_381": {
"type": "github",
"owner": "paulmillr",
"repo": "noble-bls12-381",
"desc": "bls12-381, a pairing-friendly elliptic curve construction."
},
"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"
},
"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"
},
"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."
},
"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."
},
"collections": {
"type": "github",
"owner": "hayd",
"repo": "deno-collections",
"desc": "A utility to handle collections"
},
"compose": {
"type": "github",
"owner": "KSXGitHub",
"repo": "deno-compose",
"desc": "pipe, pipeline, and compose functions with 64 overloads per function"
},
"core": {
"type": "github",
"owner": "denoland",
"repo": "deno",
"desc": "A secure runtime for JavaScript and TypeScript."
},
"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"
},
"cross_env": {
"type": "github",
"owner": "axetroy",
"repo": "deno_cross_env",
"desc": "A tool for setting environment variables across platforms"
},
"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"
},
"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."
},
"date_fns": {
"type": "github",
"owner": "date-fns",
"repo": "date-fns",
"path": "/src",
"desc": "Modern JavaScript date utility library"
},
"dblapi.ts": {
"type": "github",
"owner": "zSnails",
"repo": "dblapi.ts",
"desc": "TypeScript top.gg api wrapper"
},
"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."
},
"dem": {
"type": "github",
"owner": "syumai",
"repo": "dem",
"desc": "A module version manager 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_gui": {
"type": "github",
"owner": "fakoua",
"repo": "deno_gui",
"desc": "Deno Web GUI"
},
"deno_init": {
"type": "github",
"owner": "maxuuell",
"repo": "deno_init",
"desc": "The executable to set up a deno project 🦕"
},
"deno_search": {
"type": "github",
"owner": "etopiei",
"repo": "deno_search",
"desc": "A CLI tool to search for third party packages on deno.land"
},
"denoenv": {
"type": "github",
"owner": "rubiin",
"repo": "deno-env",
"desc": "Deno module for reading env files with added options"
},
"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."
},
"denomander": {
"type": "github",
"owner": "siokas",
"repo": "denomander",
"desc": "Deno command-line interfaces inspired from commander.js"
},
"denon": {
"type": "github",
"owner": "eliassjogreen",
"repo": "denon",
"desc": "Like nodemon but made in and for deno. Also a deno style file watcher"
},
"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."
},
"denoversion": {
"type": "github",
"owner": "lucascaro",
"repo": "denoversion",
"desc": "Deno cli to manage and bump release versions."
},
"denv": {
"type": "github",
"owner": "crowlKats",
"repo": "denv",
"desc": "A module similar to dotEnv, but for Deno"
},
"dev_server": {
"type": "github",
"owner": "zhmushan",
"repo": "dev_server",
"desc": "Feel free to import TypeScript files in the script tag!"
},
"dex": {
"type": "github",
"owner": "denjucks",
"repo": "dex",
"desc": "An SQL query builder port of Knex for Deno"
},
"dinja": {
"type": "github",
"owner": "denjucks",
"repo": "dinja",
"desc": "An scalable, Rails-like web framework for Deno"
},
"dinocord": {
"type": "github",
"owner": "sunsetkookaburra",
"repo": "dinocord",
"desc": "A Discord API Library for Deno."
},
"dirname": {
"type": "github",
"owner": "rsp",
"repo": "deno-dirname",
"desc": "Node-style __dirname and __filename polyfill for Deno"
},
"djwt": {
"type": "github",
"owner": "timonson",
"repo": "djwt",
"desc": "The absolute minimum to make JSON Web Tokens on deno. Based on JWT and JWS specifications."
},
"docable": {
"type": "github",
"owner": "crookse",
"repo": "docable",
"desc": "An open-source doc block parser for generating documenation as JSON."
},
"docopt": {
"type": "github",
"owner": "eyal-shalev",
"repo": "docopt.js",
"desc": "The command line option parser, that will make you smile."
},
"dotenv": {
"type": "github",
"owner": "pietvanzoen",
"repo": "deno-dotenv",
"desc": "Dotenv handling for deno."
},
"drake": {
"type": "github",
"owner": "srackham",
"repo": "drake",
"desc": "Drake, a Make-like task runner for Deno inspired by Make, Rake and Jake."
},
"drash": {
"type": "github",
"owner": "drashland",
"repo": "deno-drash",
"desc": "A REST microframework for Deno."
},
"drun": {
"type": "github",
"owner": "MarcHanin",
"repo": "drun",
"desc": "Drun helps to restart automatically your deno application during development"
},
"dso": {
"type": "github",
"owner": "manyuanrong",
"repo": "dso",
"desc": "dso is a simple ORM Library based on deno_mysql"
},
"dynamodb": {
"type": "github",
"owner": "chiefbiiko",
"repo": "dynamodb",
"desc": "DynamoDB client."
},
"eaisercolors": {
"type": "github",
"owner": "herohamp",
"repo": "EaiserColors",
"desc": "Eaiser colors is a wrapper for the std/colors module with the goal of making it much eaiser to see what is happening"
},
"easy_soap_request": {
"type": "github",
"owner": "circa10a",
"repo": "easy-soap-request",
"desc": "A small library to make SOAP requests easier via Node.js, Deno, and your browser"
},
"easypath": {
"type": "github",
"owner": "zekth",
"repo": "deno_easypath",
"desc": "Path wrapper to manipulate Filesystem using Deno. Mostly inspired by Path.swift"
},
"ed25519": {
"type": "github",
"owner": "paulmillr",
"repo": "noble-ed25519",
"desc": "ed25519, an elliptic curve that could be used for assymetric encryption and EDDSA signature scheme."
},
"ende": {
"type": "github",
"owner": "rsp",
"repo": "deno-ende",
"desc": "Text encoder and decoder exported as simple functions."
},
"endianess": {
"type": "github",
"owner": "denolibs",
"repo": "endianness",
"desc": "A very simple Deno module to determine the endianness of the host"
},
"enum": {
"type": "github",
"owner": "adrai",
"repo": "enum",
"desc": "Enum is a javascript module that introduces the Enum Type. It works for node.js, in the browser and for deno."
},
"escape_string_regexp": {
"type": "github",
"owner": "Sab94",
"repo": "escape-string-regexp",
"desc": "Escape RegExp special characters"
},
"espresso": {
"type": "github",
"owner": "disizali",
"repo": "espresso",
"desc": "deno minimal web framework"
},
"event_emitter": {
"type": "github",
"owner": "denolibs",
"repo": "event_emitter",
"desc": "A NodeJS-like EventEmitter for Deno written in 100% Typescript."
},
"evt": {
"type": "github",
"owner": "garronej",
"repo": "evt",
"desc": "💧A type safe replacement for Node's EventEmitter💧"
},
"expect": {
"type": "github",
"owner": "allain",
"repo": "expect",
"desc": "A deno implementation of expect in order to write tests in a more jest like style."
},
"fen": {
"type": "github",
"owner": "fen-land",
"repo": "deno-fen",
"desc": "A simple web framework for deno."
},
"filesize": {
"type": "github",
"owner": "davidjamesstone",
"repo": "deno_modules",
"path": "/filesize",
"desc": "filesize provides a simple way to get a human readable file size string from a number."
},
"fiona": {
"type": "github",
"owner": "billymoon",
"repo": "fiona",
"path": "/src",
"desc": "A tool for creating large sets of pseudo random data."
},
"free_port": {
"type": "github",
"owner": "axetroy",
"repo": "deno_free_port",
"desc": "get free port for Deno"
},
"gardens": {
"type": "github",
"owner": "partheseas",
"repo": "gardens",
"desc": "Using gardens makes it easier to handle your log output and debugging code by giving you the ability to break your output into named scopes"
},
"gentleRpc": {
"type": "github",
"owner": "timonson",
"repo": "gentleRpc",
"desc": "JSON-RPC 2.0 TypeScript library for deno and browser."
},
"handlebars": {
"type": "github",
"owner": "alosaur",
"repo": "handlebars",
"desc": "Handlebars template engine"
},
"hchacha20": {
"type": "github",
"owner": "chiefbiiko",
"repo": "hchacha20",
"desc": "Special-purpose hashing, such as X25519 key derivation, or XChacha20 initialization. If in doubt, do not use."
},
"heap": {
"type": "github",
"owner": "gobengo",
"repo": "heap",
"desc": "Heap data structure"
},
"hmac": {
"type": "github",
"owner": "chiefbiiko",
"repo": "hmac",
"desc": "Convenience function for macing singular data. hash should be one of sha1, sha256, or sha512"
},
"html_entities": {
"type": "github",
"owner": "matschik",
"repo": "deno_html_entities",
"desc": "Fast html entities decode & encode library"
},
"http_server": {
"type": "github",
"owner": "SkoshRG",
"repo": "http-server",
"desc": "http-server is a tiny and zero-configuration HTTP server with useful features to serve static files with Deno"
},
"humanizer.ts": {
"type": "github",
"owner": "fakoua",
"repo": "Humanizer.ts",
"desc": "Humanizer meets all your TypeScript needs for manipulating and displaying strings, dates, times, timespans, numbers and quantities."
},
"i18next": {
"type": "github",
"owner": "i18next",
"repo": "i18next",
"path": "/src",
"desc": "i18next: learn once - translate everywhere"
},
"i18next_fs_backend": {
"type": "github",
"owner": "i18next",
"repo": "i18next-fs-backend",
"desc": "A simple i18next backend for i18next used in Node.js and for Deno to load translations from the filesystem."
},
"i18next_http_backend": {
"type": "github",
"owner": "i18next",
"repo": "i18next-http-backend",
"desc": "A simple i18next backend to be used in Node.js, in the browser and for Deno. It will load resources from a backend server using the XMLHttpRequest or the fetch API."
},
"i18next_http_middleware": {
"type": "github",
"owner": "i18next",
"repo": "i18next-http-middleware",
"desc": "A simple i18next middleware to be used with Node.js web frameworks like express or Fastify and also for Deno."
},
"i18next_locize_backend": {
"type": "github",
"owner": "locize",
"repo": "i18next-locize-backend",
"desc": "A simple i18next backend for locize.com which can be used in Node.js, in the browser and for Deno."
},
"ini": {
"type": "github",
"owner": "chances",
"repo": "ini",
"desc": "INI configuration serializer for the Deno runtime"
},
"ink": {
"type": "github",
"owner": "fakoua",
"repo": "ink",
"desc": "HTML like terminal string color for Deno"
},
"install": {
"type": "github",
"owner": "denoland",
"repo": "deno_install",
"desc": "One-line commands to install Deno on your system."
},
"interpreter": {
"type": "github",
"owner": "lynellf",
"repo": "Interpreter",
"desc": "Interprets a description of your application and handles the rest."
},
"is": {
"type": "github",
"owner": "justjavac",
"repo": "deno-is",
"desc": "Detect the running environment and context of the current script."
},
"is_exe": {
"type": "github",
"owner": "eankeen",
"repo": "is_exe",
"desc": "detect if a file is executable or not"
},
"jbq": {
"type": "github",
"owner": "krnik",
"repo": "jbq",
"desc": "This repository has been archived by the owner. It is now read-only."
},
"jpeg.ts": {
"type": "github",
"owner": "fakoua",
"repo": "jpeg.ts",
"desc": "A pure TypeScript JPEG encoder and decoder for deno."
},
"js_yaml_port": {
"type": "github",
"owner": "KSXGitHub",
"repo": "simple-js-yaml-port-for-deno",
"desc": "A simple port of JS-YAML for Deno"
},
"json_rpc": {
"type": "github",
"owner": "ondras",
"repo": "deno-json-rpc",
"desc": "JSON-RPC interface"
},
"jszip": {
"type": "github",
"owner": "hayd",
"repo": "deno-zip",
"desc": "A wrapper around JSZip for handling zipfiles in deno"
},
"keycode": {
"type": "github",
"owner": "kabirbaidhya",
"repo": "keycode-js",
"desc": "A minimal JavaScript package with key code constants."
},
"kia": {
"type": "github",
"owner": "HarryPeach",
"repo": "kia",
"desc": "Simple terminal spinners for Deno 🦕 (Based on Ora)"
},
"ky": {
"type": "github",
"owner": "sindresorhus",
"repo": "ky",
"desc": "Ky is a tiny and elegant HTTP client based on the browser Fetch API"
},
"lambda": {
"type": "github",
"owner": "hayd",
"repo": "deno_lambda",
"path": "/runtime",
"desc": "deno on AWS Lambda"
},
"lazy": {
"type": "github",
"owner": "luvies",
"repo": "lazy",
"path": "/lib",
"desc": "This module is meant to provide memory-efficient lazy-evaluation iteration for iterable objects. The aim of this project is to support deno, node and browser, and support all native JavaScript systems for iteration (for-of, for-await-of, etc)."
},
"lib": {
"type": "github",
"owner": "brandonkal",
"repo": "deno-lib",
"desc": "A collection of useful Typescript libraries for Deno"
},
"libhydrogen": {
"type": "github",
"owner": "chiefbiiko",
"repo": "deno-libhydrogen",
"desc": "deno plugin 2 libhydrogen"
},
"license_checker": {
"type": "github",
"owner": "kt3k",
"repo": "deno_license_checker",
"desc": "This tool checks the license headers in the files in a git repository. You can configure which files should have which license texts with .licenserc.json."
},
"lodash": {
"type": "github",
"owner": "lodash",
"repo": "lodash",
"desc": "A modern JavaScript utility library delivering modularity, performance & extras."
},
"lodash_require": {
"type": "github",
"owner": "TokenChingy",
"repo": "lodash_require",
"desc": "Lodash for the Deno runtime."
},
"machine_id": {
"type": "github",
"owner": "axetroy",
"repo": "deno_machine_id",
"desc": "Get the unique ID of the current machine"
},
"match": {
"type": "github",
"owner": "gustavofsantos",
"repo": "match-ts",
"desc": "A helper module to match expressions"
},
"math": {
"type": "github",
"owner": "axetroy",
"repo": "deno_math",
"desc": "The math module is used to provide a helper for high-precision calculations and scientific computing."
},
"md5": {
"type": "github",
"owner": "halvardssm",
"repo": "deno-md5",
"desc": "MD5 for deno."
},
"media_types": {
"type": "github",
"owner": "oakserver",
"repo": "media_types",
"desc": "A module that assists in resolving media types and extensions."
},
"memoize": {
"type": "github",
"owner": "rubiin",
"repo": "memoize",
"desc": "A simple and easy to use memoize lib for deno."
},
"minimatch": {
"type": "github",
"owner": "chrisdothtml",
"repo": "deno-minimatch",
"desc": "A deno port of minimatch"
},
"mixins": {
"type": "github",
"owner": "udibo",
"repo": "mixins",
"desc": "This module provides a few basic functions to help combine objects or build up classes from partial classes."
},
"mock": {
"type": "github",
"owner": "udibo",
"repo": "mock",
"desc": "This module provides utilities to help mock behavior and spy on function calls for tests."
},
"moment": {
"type": "github",
"owner": "lisniuse",
"repo": "deno_moment",
"desc": "The Moment.ts library for Deno that was ported from [email protected], Hope you like it."
},
"mongo": {
"type": "github",
"owner": "manyuanrong",
"repo": "deno_mongo",
"desc": "MongoDB driver for Deno."
},
"ms": {
"type": "github",
"owner": "denolib",
"repo": "ms",
"desc": "Use this package to easily convert various time formats to milliseconds. It is ported from https://github.com/zeit/ms to work with Deno."
},
"murmurhash": {
"type": "github",
"owner": "justjavac",
"repo": "deno-murmurhash",
"desc": "An incremental implementation of MurmurHash3 for JavaScript"
},
"mustache": {
"type": "github",
"owner": "alosaur",
"repo": "mustache",
"desc": "Mustache template renderer"
},
"mysql": {
"type": "github",
"owner": "manyuanrong",
"repo": "deno_mysql",
"desc": "MySQL and MariaDB (5.5 and 10.2+) database driver for Deno."
},
"nanoid": {
"type": "github",
"owner": "ianfabs",
"repo": "nanoid",
"desc": "A tiny, secure, URL-friendly, unique string ID generator for JavaScript."
},
"nessie": {
"type": "github",
"owner": "halvardssm",
"repo": "deno-nessie",
"desc": "A database migration tool for deno."
},
"nessie": {
"type": "github",
"owner": "halvardssm",
"repo": "deno-nessie",
"desc": "A database migration tool for deno."
},
"normalize_diacritics": {
"type": "github",
"owner": "motss",
"repo": "deno_mod",
"path": "/normalize_diacritics",
"desc": "Simple deno module to remove any accents/ diacritics found in a string."
},
"oak": {
"type": "github",
"owner": "oakserver",
"repo": "oak",
"desc": "A middleware framework for Deno's http server, including a router middleware."
},
"observable": {
"type": "github",
"owner": "bsunderhus",
"repo": "deno-observable",
"desc": "tc39 proposal spec compatible observable"
},
"once": {
"type": "github",
"owner": "KSXGitHub",
"repo": "deno-once",
"desc": "Create a function that calls and cache a function once"
},
"open": {
"type": "github",
"owner": "SkoshRG",
"repo": "deno-open",
"desc": "A package for opening URLs, files and executables."
},
"panoptes": {
"type": "github",
"owner": "TokenChingy",
"repo": "panoptes",
"desc": "A simple array and object watcher function for Deno."
},
"parry": {
"type": "github",
"owner": "eliassjogreen",
"repo": "parry",
"desc": "A simple way of running functions in their own WebWorkers"
},
"parseargs": {
"type": "github",
"owner": "bartlomieju",
"repo": "parseargs",
"desc": "Migrated to denoland/deno_std."
},
"pbkdf2": {
"type": "github",
"owner": "chiefbiiko",
"repo": "pbkdf2",
"desc": "Password-Based Key Derivation Function 2"
},
"perlinnoise": {
"type": "github",
"owner": "herohamp",
"repo": "PerlinNoise-Deno",
"desc": "A simple to use perlin noise module for typescript."
},
"pipeline": {
"type": "github",
"owner": "Focinfi",
"repo": "deno-pipeline",
"desc": "Configurable data pipeline in Deno."
},
"plugin_prepare": {
"type": "github",
"owner": "manyuanrong",
"repo": "deno-plugin-prepare",
"desc": "A library for managing deno native plugin dependencies."
},
"pogo": {
"type": "github",
"owner": "sholladay",
"repo": "pogo",
"desc": "Pogo is an easy to use, safe, and expressive framework for writing web servers and applications. It is inspired by hapi."