-
Notifications
You must be signed in to change notification settings - Fork 0
/
mybibliographyfile.bib
executable file
·1190 lines (1048 loc) · 34.4 KB
/
mybibliographyfile.bib
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
@online{agile-mapping-objects,
title = {Mapping {Objects} to {Relational} {Databases}: {O}/{R} {Mapping} {In} {Detail}},
shorttitle = {Mapping {Objects} to {Relational} {Databases}},
url = {http://www.agiledata.org/essays/mappingObjects.html},
language = {en},
urldate = {2023-04-21},
journal = {AgileData.org}
}
@online{artima-abstractions,
title = {artima - {Inappropriate} {Abstractions}},
url = {https://www.artima.com/articles/inappropriate-abstractions#part3},
urldate = {2023-04-21}
}
@online{auth0JavascriptHistory,
title = {A {Brief} {History} of {JavaScript}},
url = {https://auth0.com/blog/a-brief-history-of-javascript/},
abstract = {We take a look at the evolution of JavaScript, arguably one of the most important languages of today, and tomorrow},
language = {en},
urldate = {2023-04-21},
journal = {Auth0 - Blog}
}
@online{commonjs-introduction,
title = {Introduction - {CommonJS} {Spec} {Wiki}},
url = {https://wiki.commonjs.org/wiki/Introduction},
urldate = {2023-04-21}
}
@online{commonjs-spec,
title = {{CommonJS} {Spec} {Wiki}},
url = {https://wiki.commonjs.org/wiki/CommonJS},
urldate = {2023-04-21}
}
@online{commonjsModulesNode,
title = {Node.js V20.0.0 documentation},
url = {https://nodejs.org/api/modules.html#modules_cycles},
journal = {Modules: CommonJS modules | Node.js v20.0.0 Documentation},
urldate = {2023-04-20},
year = {2023},
month = {04},
day = {20}
}
@online{cve-2016-20018,
title = {{CVE}-2016-20018 - {GitHub} {Advisory} {Database}},
url = {https://github.com/advisories/GHSA-4jv9-3563-23j3},
abstract = {Knex.js has a limited SQL injection vulnerability},
language = {en},
urldate = {2023-04-21},
journal = {GitHub}
}
@online{cve-2019-10744,
title = {{CVE}-2019-10744 - {GitHub} {Advisory} {Database}},
url = {https://github.com/advisories/GHSA-jf85-cpcp-j695},
abstract = {Prototype Pollution in lodash},
language = {en},
urldate = {2023-04-21},
journal = {GitHub}
}
@online{definitelytyped/types/waterline,
title = {{DefinitelyTyped}/types/waterline at master · {DefinitelyTyped}},
url = {https://github.com/DefinitelyTyped/DefinitelyTyped},
abstract = {The repository for high quality TypeScript type definitions. - DefinitelyTyped/types/waterline at master · DefinitelyTyped/DefinitelyTyped},
language = {en},
urldate = {2023-04-21},
journal = {GitHub}
}
@online{ecma-262,
title = {{ECMA}-262},
url = {https://www.ecma-international.org/publications-and-standards/standards/ecma-262/},
abstract = {ECMAScript® 2022 language specification, 13th edition - ECMAScript is a programming language based on several technologies like JavaScript.},
language = {en-US},
urldate = {2023-04-21},
journal = {Ecma International}
}
@online{ecma-mission,
title = {Mission},
url = {https://www.ecma-international.org/mission/},
abstract = {Ecma develops and publishes international standards for the information and communication industry.},
language = {en-US},
urldate = {2023-04-21},
journal = {Ecma International}
}
@book{fowler-patterns-2003,
address = {Boston},
series = {The {Addison}-{Wesley} signature series},
title = {Patterns of enterprise application architecture},
isbn = {9780321127426},
publisher = {Addison-Wesley},
author = {Fowler, Martin},
year = {2003},
keywords = {System design, Computer architecture, Application software, Development, Business, Data processing}
}
@book{gamma-design-1995,
address = {Reading, Mass},
series = {Addison-{Wesley} professional computing series},
title = {Design patterns: elements of reusable object-oriented software},
isbn = {9780201633610},
shorttitle = {Design patterns},
publisher = {Addison-Wesley},
author = {Gamma, Erich and Richard, Helm and Ralph, Johnson and John, Vlissides},
year = {1995},
keywords = {Object-oriented programming (Computer science), Computer software, Reusability, Software patterns}
}
@inproceedings{gupta-improving-2017,
address = {Coimbatore},
title = {Improving performance of web application approaches using connection pooling},
isbn = {9781509056859},
url = {http://ieeexplore.ieee.org/document/8212833/},
doi = {10.1109/ICECA.2017.8212833},
urldate = {2023-04-21},
booktitle = {2017 {International} conference of {Electronics}, {Communication} and {Aerospace} {Technology} ({ICECA})},
publisher = {IEEE},
author = {Gupta, Kirti and Mathuria, Manish},
month = apr,
year = {2017}
}
@article{haerder-principles-1983,
title = {Principles of transaction-oriented database recovery},
volume = {15},
issn = {0360-0300, 1557-7341},
url = {https://dl.acm.org/doi/10.1145/289.291},
doi = {10.1145/289.291},
language = {en},
number = {4},
urldate = {2023-04-21},
journal = {ACM Computing Surveys},
author = {Haerder, Theo and Reuter, Andreas},
month = dec,
year = {1983}
}
@online{libpq,
title = {Chapter 34. libpq — {C} {Library}},
url = {https://www.postgresql.org/docs/15/libpq.html},
language = {en},
urldate = {2023-04-21},
journal = {PostgreSQL Documentation},
month = feb,
year = {2023}
}
@article{melton-empirical-2007,
title = {An empirical study of cycles among classes in {Java}},
volume = {12},
issn = {1382-3256, 1573-7616},
url = {http://link.springer.com/10.1007/s10664-006-9033-1},
doi = {10.1007/s10664-006-9033-1},
language = {en},
number = {4},
urldate = {2023-04-21},
journal = {Empirical Software Engineering},
author = {Melton, Hayden and Tempero, Ewan},
month = jul,
year = {2007}
}
@online{node-postgres,
title = {node-postgres},
url = {https://node-postgres.com/},
abstract = {node-postgres is a collection of node.js modules for interfacing with your PostgreSQL database.},
urldate = {2023-04-21}
}
@online{pgJDBC,
title = {Home {\textbar} {pgJDBC}},
url = {https://jdbc.postgresql.org/},
urldate = {2023-04-21}
}
@online{postgres-availability,
title = {Chapter 27. {High} {Availability}, {Load} {Balancing}, and {Replication}},
url = {https://www.postgresql.org/docs/15/high-availability.html},
language = {en},
urldate = {2023-04-21},
journal = {PostgreSQL Documentation},
month = feb,
year = {2023}
}
@online{postgres-datatypes,
title = {Chapter 8. {Data} {Types}},
url = {https://www.postgresql.org/docs/15/datatype.html},
language = {en},
urldate = {2023-04-21},
journal = {PostgreSQL Documentation},
month = feb,
year = {2023}
}
@online{postgres-lexer,
title = {4.1. {Lexical} {Structure}},
url = {https://www.postgresql.org/docs/15/sql-syntax-lexical.html},
language = {en},
urldate = {2023-04-21},
journal = {PostgreSQL Documentation},
month = feb,
year = {2023}
}
@online{postgres-licence,
title = {PostgreSQL Licence},
url = {https://www.postgresql.org/about/licence/},
language = {en},
urldate = {2023-04-21},
journal = {PostgreSQL Documentation},
month = feb,
year = {2023}
}
@online{postgres-transaction,
title = {13.2. {Transaction} {Isolation}},
url = {https://www.postgresql.org/docs/15/transaction-iso.html},
abstract = {13.2.\ Transaction Isolation 13.2.1. Read Committed Isolation Level 13.2.2. Repeatable Read Isolation Level 13.2.3. Serializable Isolation Level The SQL standard defines …},
language = {en},
urldate = {2023-04-21},
journal = {PostgreSQL Documentation},
month = feb,
year = {2023}
}
@online{postres-about,
title = {{PostgreSQL}: {About}},
url = {https://www.postgresql.org/about/},
urldate = {2023-04-21}
}
@online{psycopg2,
title = {psycopg2: psycopg2 - {Python}-{PostgreSQL} {Database} {Adapter}},
copyright = {GNU Library or Lesser General Public License},
shorttitle = {psycopg2},
url = {https://psycopg.org/},
urldate = {2023-04-21},
collaborator = {Gregorio, Federico Di},
keywords = {Database, Database - Front-Ends, Software Development, Software Development - Libraries - Python Modules}
}
@online{rosenwasser-typescript-2022,
title = {Announcing {TypeScript} 4.8},
url = {https://devblogs.microsoft.com/typescript/announcing-typescript-4-8/},
abstract = {Today we’re excited to announce the release of TypeScript 4.8! If you’re not yet familiar with TypeScript, it’s a language that builds on JavaScript and adds syntax for types. These types let you put your expectations and assumptions into your code,},
language = {en-US},
urldate = {2023-04-21},
journal = {TypeScript},
author = {Rosenwasser, Daniel},
month = aug,
year = {2022}
}
@online{sequelize-eager-loading,
title = {Eager {Loading} {\textbar} {Sequelize}},
url = {https://sequelize.org/docs/v6/advanced-association-concepts/eager-loading/},
abstract = {As briefly mentioned in the associations guide, eager Loading is the act of querying data of several models at once (one 'main' model and one or more associated models). At the SQL level, this is a query with one or more joins).},
language = {en},
urldate = {2023-04-21},
month = apr,
year = {2023}
}
@online{sequelize-inital-commit,
title = {initial import · sequelize/sequelize@fee9208},
url = {https://github.com/sequelize/sequelize/commit/fee92083a75c15f5b6cd2d0c2f3bb043ae155e68},
abstract = {Feature-rich ORM for modern Node.js and TypeScript, it supports PostgreSQL (with JSON and JSONB support), MySQL, MariaDB, SQLite, MS SQL Server, Snowflake, Oracle DB (v6), DB2 and DB2 for IBM i. - initial import · sequelize/sequelize@fee9208},
language = {en},
urldate = {2023-04-21},
journal = {GitHub}
}
@online{spidermonkey-documentation,
title = {{SpiderMonkey} — {Firefox} {Source} {Docs} documentation},
url = {https://firefox-source-docs.mozilla.org/js/index.html},
urldate = {2023-04-21}
}
@online{v8-homepage,
title = {{V8} — {JavaScript} {engine}},
url = {https://v8.dev/},
urldate = {2023-04-21}
}
@online{javascript-core,
title = {{JavaScriptCore} — {WebKit}},
url = {https://trac.webkit.org/wiki/JavaScriptCore},
urldate = {2023-04-21}
}
@online{stack-overflow-survey,
title = {Stack {Overflow} {Developer} {Survey} 2022},
url = {https://survey.stackoverflow.co/2022/?utm-source=social-share&utm_medium=social&utm_campaign=dev-survey-2022},
abstract = {In May 2022 over 70,000 developers told us how they learn and level up, which tools they’re using, and what they want.},
language = {en},
urldate = {2023-04-21},
journal = {Stack Overflow}
}
@online{typeORM-Future,
title = {Future of {TypeORM} · {Issue} \#3267 · typeorm/typeorm},
url = {https://github.com/typeorm/typeorm/issues/3267},
abstract = {We are working full-time on TypeORM for almost three years. That’s why we have such a powerful and really amazing ORM. And this time wasn't funded or sponsored by anybody except our core developers...},
language = {en},
urldate = {2023-04-21},
journal = {GitHub}
}
@online{typescript-modules,
title = {Documentation - {Modules}},
url = {https://www.typescriptlang.org/docs/handbook/modules.html},
abstract = {How modules work in TypeScript},
language = {en},
urldate = {2023-04-21}
}
@book{Web2Oreilly,
title = {What is web 2.0},
subtitle = {Design Patterns and Business Models for the Next Generation of Software},
author = {O'reilly, Tim},
day = {30},
month = {09},
year = {2005},
publisher = {" O'Reilly Media, Inc."},
url = {https://www.oreilly.com/pub/a/web2/archive/what-is-web-20.html},
urldate = {2023-04-15}
}
@online{webPerformanceMDN,
title = {Lazy loading - Web Performance},
url = {https://developer.mozilla.org/en-US/docs/Web/Performance/Lazy_loading},
journal = {MDN Web Docs},
urldate = {2023-04-20},
howpublished = {online},
year = {2023},
month = {04},
day = {20}
}
@online{coffeescript-homepage,
title = {{CoffeeScript}},
url = {https://coffeescript.org/},
urldate = {2023-04-21}
}
@online{typescript-homepage,
title = {TypeScript},
url = {https://www.typescriptlang.org/},
abstract = {TypeScript extends JavaScript by adding types to the language. TypeScript speeds up your development experience by catching errors and providing fixes before you even run your code.},
language = {en},
urldate = {2023-04-21}
}
@online{dart-homepage,
title = {Dart programming language},
url = {https://dart.dev/},
abstract = {Dart is a client-optimized language for fast apps on any platform},
language = {en},
urldate = {2023-04-21}
}
@online{node-about,
title = {About},
url = {https://nodejs.org/en/about},
abstract = {Node.js® is a JavaScript runtime built on Chrome's V8 JavaScript engine.},
urldate = {2023-04-21},
journal = {Node.js}
}
@online{node-ecmascript,
title = {{ECMAScript} 2015 ({ES6}) and beyond},
url = {https://nodejs.org/en/docs/es6},
abstract = {Node.js® is a JavaScript runtime built on Chrome's V8 JavaScript engine.},
urldate = {2023-04-21},
journal = {Node.js}
}
@online{typescript-webstorm,
title = {{TypeScript} {\textbar} {WebStorm}},
url = {https://www.jetbrains.com/help/webstorm/typescript-support.html},
language = {en-US},
urldate = {2023-04-21},
journal = {WebStorm Help}
}
@online{typescript-vscode,
title = {{TypeScript} {Programming} with {Visual} {Studio} {Code}},
url = {https://code.visualstudio.com/docs/languages/typescript},
abstract = {Get the best out editing TypeScript with Visual Studio Code.},
language = {en},
urldate = {2023-04-21}
}
@online{npm-usage,
title = {npm Logs and Usabge},
url = {https://docs.npmjs.com/policies/logos-and-usage},
language = {en},
urldate = {2023-04-21}
}
@online{npm-old-readme,
title = {cli/README.md - npm/cli},
language = {en},
day = {29},
month = {09},
year = {2009},
urldate = {2023-04-21}
}
@online{ryan-node,
title = {Ryan {Dahl}: {Original} {Node}.js presentation},
shorttitle = {Ryan {Dahl}},
url = {https://www.youtube.com/watch?v=ztspvPYybIY},
abstract = {The first presentation on Node.js from Ryan Dahl at JSConf 2009},
language = {cs-CZ},
urldate = {2023-04-21}
}
@online{orsini_2013,
title = {What You Need To Know About Node.js},
url = {https://readwrite.com/what-you-need-to-know-about-nodejs/},
abstractnote = {Node.js is not just another flash-in-the-pan framework, it’s fundamentally changing the way the Web works.},
journal = {ReadWrite},
author = {Lauren Orsini},
year = {2013},
month = {11},
language = {en-US},
urldate = {2023-04-21}
}
@online{PromiseJavaScriptMDN_2023,
url = {https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise},
title = {Promises - MDN},
abstractnote = {The Promise object represents the eventual completion (or failure) of an asynchronous operation and its resulting value.},
year = {2023},
month = {4},
language = {en-US}
}
@online{Deno,
url = {https://deno.land/},
title = {Deno runtime},
abstractnote = {Deno is a simple, modern runtime for JavaScript and TypeScript that uses V8 and is built in Rust.},
journal = {Deno},
language = {en},
urldate = {2023-04-22}
}
@online{Yarn,
title = {Yarn package manager},
url = {https://classic.yarnpkg.com/en/docs/getting-started/},
abstractnote = {Fast, reliable, and secure dependency management.},
journal = {Yarn},
language = {en}
}
@online{ECMA-404,
title = {The {JSON} {Data} {Interchange} {Syntax} - ECMA-404},
url = {https://www.ecma-international.org/publications-and-standards/standards/ecma-404/},
abstractnote = {The JSON data interchange syntax - JSON defines a small set of structuring rules for the portable representation of structured data},
journal = {Ecma International},
language = {en-US},
urldate = {2023-04-21}
}
@article{Torres_Galante_Pimenta_Martins_2017,
title = {Twenty years of object-relational mapping: A survey on patterns, solutions, and their implications on application design},
volume = {82},
issn = {09505849},
url = {https://linkinghub.elsevier.com/retrieve/pii/S0950584916301859},
doi = {10.1016/j.infsof.2016.09.009},
journal = {Information and Software Technology},
author = {Torres, Alexandre and Galante, Renata and Pimenta, Marcelo S. and Martins, Alexandre Jonatan B.},
year = {2017},
month = {02},
language = {en}
}
@online{waterline-docs,
url = {https://sailsjs.com/documentation/concepts/models-and-orm},
title = {{Models} {and} {ORM} {-} {Sails.js}},
urldate = {2023-04-21}
}
@online{express_2022,
url = {https://www.npmjs.com/package/express},
abstractnote = {Fast, unopinionated, minimalist web framework. Latest version: 4.18.2},
title = {Express | npm},
journal = {npm},
year = {2022},
month = {10},
language = {en},
urldate = {2023-04-21}
}
@online{koa_2023,
url = {https://www.npmjs.com/package/koa},
title = {Koa | npm},
abstractnote = {Koa web app framework. Latest version: 2.14.2},
journal = {npm},
year = {2023},
month = {4},
language = {en},
urldate = {2023-04-21}
}
@online{MITLicense,
url = {https://mit-license.org/},
title = {MIT License},
abstractnote = {The MIT License is a permissive free software license originating at the Massachusetts Institute of Technology. As a permissive license, it puts only very limited restriction on reuse and has, therefore, an excellent license compatibility.},
urldate = {2023-04-21}
}
@online{ApacheLicense2,
url = {https://www.apache.org/licenses/LICENSE-2.0.html},
title = {Apache License Version 2.0},
abstractnote = {Home page of The Apache Software Foundation},
urldate = {2023-04-21}
}
@online{FAQ-GNU,
url = {https://www.gnu.org/licenses/gpl-faq.html#WhySomeGPLAndNotLGPL},
title = {Frequently Asked Questions about the GNU Licenses},
urldate = {2023-04-21}
}
@online{npmSearchORM,
url = {https://www.npmjs.com/search?q=keywords:orm},
language = {en},
title = {keywords:orm - npm repository search},
urldate = {2023-04-21}
}
@online{SitePoint_2021,
url = {https://www.sitepoint.com/javascript-typescript-orms/},
abstractnote = {An ORM library simplifies the job of writing database queries. Learn about nine JS and TypeScript ORMs and how they could help you with your next project.},
year = {2021},
month = {3},
language = {en},
author = {Michael Wanyoike},
urldate = {2023-04-21}
}
@online{Wang_2020,
title = {Popular ORMs in JavaScript},
url = {https://medium.com/@yszd320/popular-orms-in-javascript-d101f667c0be},
abstractnote = {In Ruby, we use Active Record to help with “CRUD” data in SQL database with objects. Its pattern, active record pattern is an…},
journal = {Medium},
author = {Wang, Xiaoxuan},
year = {2020},
month = {4},
language = {en},
urldate = {2023-04-21}
}
@online{GNUGPL,
title = {The GNU General Public License v3.0 - GNU Project - Free Software Foundation},
url = {https://www.gnu.org/licenses/gpl-3.0.en.html},
author = {Free Software Foundation, Inc.},
year = {2007},
urldate = {2023-04-21}
}
@online{Typescript-jsdoc,
title = {Documentation - JSDoc Reference},
url = {https://www.typescriptlang.org/docs/handbook/jsdoc-supported-types.html},
language = {en},
urldate = {2023-04-21}
}
@online{upsertCockroachDB,
url = {https://www.cockroachlabs.com/docs/stable/upsert.html},
journal = {CockroachDB Docs},
language = {en},
title = {Upsert | CockroachDB},
urldate = {2023-04-21}
}
@online{INSERT_postgres_2023,
url = {https://www.postgresql.org/docs/15/sql-insert.html},
title = {INSERT},
journal = {PostgreSQL Documentation},
year = {2023},
month = {2},
language = {en},
urldate = {2023-04-21}
}
@online{Constraints_Postgres_2023,
url = {https://www.postgresql.org/docs/15/ddl-constraints.html},
journal = {PostgreSQL Documentation},
title = {5.4. Constraints},
year = {2023},
month = {2},
language = {en},
urldate = {2023-04-21}
}
@online{postgres-json,
title = {8.14. JSON Types},
url = {https://www.postgresql.org/docs/15/datatype-json.html},
journal = {PostgreSQL Documentation},
year = {2023},
month = {2},
language = {en},
urldate = {2023-04-21}
}
@online{JavaScript-Date-MDN,
url = {https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date},
year = {2023},
month = {4},
language = {en-US},
title = {Date - JavaScript},
journal = {MDN Web Docs},
urldate = {2023-04-22}
}
@online{Date/TimeTypes_Postgres,
url = {https://www.postgresql.org/docs/15/datatype-datetime.html},
journal = {PostgreSQL Documentation},
year = {2023},
month = {2},
language = {en},
title = {Date/Time Types},
urldate = {2023-04-22}
}
@online{Karwin_2010,
title = {Answer to “Still Confused About Identifying vs. Non-Identifying Relationships”},
url = {https://stackoverflow.com/a/2814663},
author = {Karwin, Bill},
year = {2010},
month = {5},
urldate = {2023-04-22}
}
@online{Jest,
url = {https://jestjs.io/},
language = {en},
title = {Jest testing framework},
urldate = {2023-04-21}
}
@online{Mocha,
title = {Mocha - the fun, simple, flexible JavaScript test framework},
url = {https://mochajs.org/},
urldate = {2023-04-22}
}
@online{NodeAssert,
title = {Assert},
journal = {Node.js v20.0.0 Documentation},
url = {https://nodejs.org/api/assert.html},
urldate = {2023-04-22}
}
@online{npmWorkspaces,
journal = {npm Docs},
title = {Workspaces},
url = {https://docs.npmjs.com/cli/v7/using-npm/workspaces/},
abstractnote = {Working with workspaces},
language = {en},
urldate = {2023-04-22}
}
@online{Sass,
url = {https://sass-lang.com/},
title = {Sass: Syntactically Awesome Style Sheets},
urldate = {2023-04-22}
}
@online{MDNNumber,
title = {Number - JavaScript},
journal = {MDN Docs},
url = {https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number},
year = {2023},
month = {4},
language = {en-US},
urldate = {2023-04-22}
}
@online{PostgresNumeric,
title = {8.1. Numeric Types},
url = {https://www.postgresql.org/docs/15/datatype-numeric.html},
journal = {PostgreSQL Documentation},
year = {2023},
month = {2},
language = {en},
urldate = {2023-04-22}
}
@online{MDNBigInt,
title = {BigInt - JavaScript},
journal = {MDN Docs},
url = {https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/BigInt},
year = {2023},
month = {4},
language = {en-US},
urldate = {2023-04-22}
}
@online{pgTyped,
title = {PgTyped - Typesafe SQL in Typescript},
url = {https://pgtyped.dev/},
abstractnote = {Typesafe SQL in Typescript},
language = {en},
urldate = {2023-04-22}
}
@online{pgtyped/cli,
title = {@pgtyped/cli},
url = {https://www.npmjs.com/package/@pgtyped/cli},
journal = {npm},
year = {2023},
month = {3},
language = {en},
urldate = {2023-04-22}
}
@online{pgtyped/runtime,
title = {@pgtyped/runtime dependencies},
url = {https://www.npmjs.com/package/@pgtyped/runtime?activeTab=dependencies},
journal = {npm},
year = {2023},
month = {3},
language = {en},
urldate = {2023-04-22}
}
@online{pgtyped-docs,
title = {pgTyped Documentation},
url = {https://pgtyped.dev/docs/},
urldate = {2023-04-22},
language = {en}
}
@online{pg-schema-cli,
title = {@databases/pg-schema-cli},
url = {https://www.npmjs.com/package/@databases/pg-schema-cli},
journal = {npm},
year = {2023},
month = {1},
language = {en},
urldate = {2023-04-22}
}
@online{databases/pg,
title = {@databases/pg},
url = {https://www.atdatabases.org/docs/pgg},
year = {2023},
month = {1},
language = {en},
urldate = {2023-04-22}
}
@online{databases/pg/npm,
title = {@databases/pg},
url = {https://www.npmjs.com/package/@databases/pg},
year = {2023},
month = {1},
language = {en},
urldate = {2023-04-22}
}
@online{zapatos,
title = {Zapatos},
url = {https://www.npmjs.com/package/zapatos},
year = {2023},
month = {1},
language = {en},
journal = {npm},
urldate = {2023-04-22}
}
@online{zapatosDocs,
title = {Zapatos Documentation},
url = {https://jawj.github.io/zapatos/},
year = {2023},
month = {1},
language = {en},
urldate = {2023-04-22}
}
@online{KnexCommits,
url = {https://github.com/knex/knex},
title = {Commits · knex/knex},
journal = {GitHub},
language = {en},
urldate = {2023-04-22}
}
@online{knexTypes,
url = {https://www.npmjs.com/package/knex-types},
title = {knex-types},
journal = {npm},
author = {Kriasoft},
year = {2022},
urldate = {2023-04-22}
}
@online{knexDocumentation,
title = {Installation | Knex.js},
url = {https://knexjs.org/guide/},
abstractnote = {Beta knex.js documentation.},
language = {en-US},
urldate = {2023-04-22}
}
@online{knexNpm,
url = {https://www.npmjs.com/package/knex},
title = {Knex.js},
journal = {npm},
author = {Kriasoft},
year = {2022},
urldate = {2023-04-22}
}
@online{knexJSONIssue1,
title = {Knex.js issue \#5091},
url = {https://github.com/knex/knex/issues/5091},
journal = {GitHub},
language = {en},
urldate = {2023-04-22}
}
@online{knexJSONIssue2,
title = {Knex.js issue \#3112},
url = {https://github.com/knex/knex/issues/3112},
journal = {GitHub},
language = {en},
urldate = {2023-04-22}
}
@online{drizzleComparison,
title = {Drizzle northwind pg},
url = {https://github.com/drizzle-team/drizzle-northwind-benchmarks-pg},
journal = {GitHub},
language = {en},
urldate = {2023-04-22}
}
@online{imdbBench,
title = {imdb-bench},
url = {https://github.com/edgedb/imdbench},
journal = {GitHub},
language = {en},
urldate = {2023-04-23}
}
@online{kyselyGithub,
title = {Kysely},
url = {https://github.com/kysely-org/kysely},
journal = {GitHub},
language = {en},
urldate = {2023-04-23}
}
@online{kyselyPrisma,
title = {prisma-kysely},
url = {https://github.com/valtyr/prisma-kysely},
journal = {GitHub},
language = {en},
urldate = {2023-04-23}
}
@online{kyselyCodegen,
title = {kysely-codegen},
url = {https://github.com/RobinBlomberg/kysely-codegen},
journal = {GitHub},
language = {en},
urldate = {2023-04-23}
}
@misc{kyselyWeb,
url = {https://kysely.dev/docs/intro},
title = {Kysely Documentation},
language = {en},
urldate = {2023-04-23}
}
@online{kyselyNpm,
title = {kysely},
url = {https://www.npmjs.com/package/kysely},
journal = {npm},
language = {en},
urldate = {2023-04-23}
}
@online{mikroORMWeb,
title = {MikroORM},
url = {https://mikro-orm.io/},
language = {en},
urldate = {2023-04-23}
}
@online{mikroORMNpm,
title = {mikro-orm},
url = {https://www.npmjs.com/package/mikro-orm},
journal = {npm},
language = {en},
urldate = {2023-04-23}
}
@online{mikroORMGitHub,
title = {mikro-orm},
url = {https://www.github.com/mikro-orm/mikro-orm},
journal = {GitHub},
language = {en},
urldate = {2023-04-23}
}
@online{mikroORMDocsRelations,
title = {Type-safe relations},
journal = {MikroORM Documentation},
url = {https://mikro-orm.io/docs/type-safe-relations},
language = {en},
urldate = {2023-04-23}
}
@online{mikroORMDocs,
title = {MikroORM Documentation},
url = {https://mikro-orm.io/docs/},
journal = {MikroORM Documentation},
language = {en},
urldate = {2023-04-23}
}
@online{PrinciplesOfOod,
url = {http://butunclebob.com/ArticleS.UncleBob.PrinciplesOfOod},
author = {Robert C. Martin},
title = {The Principles of OOD},
year = {2003},
urldate = {2023-04-21}
}
@online{mikroORMDeno,
title = {Support for deno?},
url = {https://github.com/mikro-orm/mikro-orm/discussions/3079},
language = {en},
urldate = {2023-04-23}
}
@online{mikroORM-EM,
title = {Working with Entity Manager},
url = {https://mikro-orm.io/docs/entity-manager},
journal = {MikroORM Docs},
language = {en},
urldate = {2023-04-23}
}
@online{prismaDocsSchema,
url = {https://www.prisma.io/docs/concepts/components/prisma-schema},
title = {Prisma Schema},
journal = {Prisma Documentation},
language = {en},
urldate = {2023-04-23}
}
@online{prismaNpm,
title = {prisma},
url = {https://www.npmjs.com/package/prisma},
journal = {npm},
language = {en},
urldate = {2023-04-23}
}
@online{prismaES6,
url = {https://github.com/prisma/prisma/issues/5030},
title = {Support ES6 modules export / ESM},
journal = {GitHub},
language = {en},
urldate = {2023-04-23}
}
@online{prismaDocsDeploy,
url = {https://www.prisma.io/docs/guides/deployment/deployment-guides},
title = {Deplyoment guides},
urldate = {2023-04-20},
journal = {Prisma Documentation},
language = {en}
}
@online{prismaGitHub,
url = {https://www.github.com/prisma/prisma},
title = {prisma/prisma},
journal = {GitHub},
language = {en},
urldate = {2023-04-23}
}
@online{sequelizeNpm,