-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
domain-2020.json
12197 lines (12197 loc) · 494 KB
/
domain-2020.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
[
[
"github.com",
[
{
"date": "2020-01-01T00:25:37.207Z",
"title": "machinelearnjs/machinelearnjs: Machine Learning library for the web and Node.",
"url": "https://github.com/machinelearnjs/machinelearnjs",
"content": "TypeScriptで書かれたMLライブラリ",
"tags": [
"TypeScript",
"MachineLearning",
"library"
],
"relatedLinks": []
},
{
"date": "2020-01-02T11:51:21.886Z",
"title": "hjkcai/typesafe-joi: A fork of joi that produces typed validation results in TypeScript",
"url": "https://github.com/hjkcai/typesafe-joi",
"content": "データバリデーターであるjoiのTypeScriptフォークライブラリ。\n大部分は互換性のあるAPIだが、一部はType SafeにするためAPIを変更している。",
"tags": [
"TypeScript",
"JavaScript",
"library"
],
"relatedLinks": []
},
{
"date": "2020-01-04T10:54:23.584Z",
"title": "antvis/G6: ♾ A Graph Visualization Framework in JavaScript",
"url": "https://github.com/antvis/G6",
"content": "データビジュアライズライブラリ。\nグラフの情報とデータを渡すことでビジュアライズしてくれるライブラリ",
"tags": [
"graphic",
"JavaScript",
"library"
],
"relatedLinks": []
},
{
"date": "2020-01-05T16:18:18.166Z",
"title": "shellyln/tynder: TypeScript friendly Data validator for JavaScript.",
"url": "https://github.com/shellyln/tynder",
"content": "TypeScriptライクなDSLでスキーマを定義し、実行時にデータの型を検証を行うバリデーションライブラリ。",
"tags": [
"JavaScript",
"library",
"Tools"
],
"relatedLinks": [
{
"title": "TypeScriptの型定義を使って、実行時にデータの検証を行う - Shellylのブログ",
"url": "https://shellyln.hatenablog.com/entry/2020/01/05/161345"
}
]
},
{
"date": "2020-01-06T00:14:20.623Z",
"title": "mocha/CHANGELOG.md at master · mochajs/mocha",
"url": "https://github.com/mochajs/mocha/blob/master/CHANGELOG.md#%E2%80%8B700--2020-01-05",
"content": "Mocha 7.0.0リリース。\nNode.js v6.xのサポート終了、一部コマンドライン引数のリネーム、`Mocha`コンストラクタのオプションとコマンドラインオプションをあわせるように変更など。\nまた、`mocha.opts`ファイルが非推奨となった。",
"tags": [
"JavaScript",
"testing",
"library",
"ReleaseNote"
],
"relatedLinks": [
{
"title": "Soft deprecate "mocha.opts" · Issue #3910 · mochajs/mocha",
"url": "https://github.com/mochajs/mocha/issues/3910"
}
]
},
{
"date": "2020-01-06T02:08:08.716Z",
"title": "mroderick/plete: Vanilla autocomplete component",
"url": "https://github.com/mroderick/plete",
"content": "依存のないautocomplete UIライブラリ。\nModern browserを対象としている。",
"tags": [
"JavaScript",
"UI",
"library",
"WAI-ARIA"
],
"relatedLinks": []
},
{
"date": "2020-01-06T08:23:45.884Z",
"title": "Release v0.115.0 · facebook/flow",
"url": "https://github.com/facebook/flow/releases/tag/v0.115.0",
"content": "Flow v0.115.0リリース。\nTypes First modeではexportされたclassやfunctionは再定義できなくなるなど。\n",
"tags": [
"flowtype",
"ReleaseNote"
],
"relatedLinks": [
{
"title": "What the Flow team has been up to - Flow - Medium",
"url": "https://medium.com/flow-type/what-the-flow-team-has-been-up-to-54239c62004f"
}
]
},
{
"date": "2020-01-08T13:20:54.424Z",
"title": "Release throw new Preact('10.2.0') · preactjs/preact",
"url": "https://github.com/preactjs/preact/releases/tag/10.2.0",
"content": "Preact 10.2.0リリース。\n`useErrorBoundary` hookのサポート、`lazy()`がnamed exportsに対応など",
"tags": [
"JavaScript",
"React",
"library",
"ReleaseNote"
],
"relatedLinks": []
},
{
"date": "2020-01-11T04:16:15.165Z",
"title": "Release v2.9.0 · date-fns/date-fns",
"url": "https://github.com/date-fns/date-fns/releases/tag/v2.9.0",
"content": "date-fns 2.9.0リリース。\n`eachYearInterval`、`eachMonthInterval`、`isExists`の追加。\nオブジェクトでまとめてDateを操作する`add`と`sub`の追加など\n",
"tags": [
"JavaScript",
"library",
"ReleaseNote"
],
"relatedLinks": []
},
{
"date": "2020-01-12T09:11:18.593Z",
"title": "Release Version 16.0.0 · jsdom/jsdom",
"url": "https://github.com/jsdom/jsdom/releases/tag/16.0.0",
"content": "jsdom 16.0.0リリース。\nNode.js 10未満のサポート終了、`dom.runVMScript()`の廃止、`prototype`使った`Window`間のプロパティ共有の廃止など。`window.getSelection()`のサポート、Timerのメモリリークを修正など",
"tags": [
"JavaScript",
"DOM",
"ReleaseNote",
"library"
],
"relatedLinks": []
},
{
"date": "2020-01-12T12:21:19.567Z",
"title": "Release V1 RELEASE! @pika/web is now Snowpack · pikapkg/snowpack",
"url": "https://github.com/pikapkg/snowpack/releases/tag/v1.0.1",
"content": "Snowpack 1.0.0リリース。\nインストール時にES Modulesとして読み込めるモジュールを配置することで、変更ごとにビルドしないでアプリケーション開発できることを目的にしている。\n`@pika/web`からSnowpackにリネーム、`--optimize`でのtree-shakingサポート等。",
"tags": [
"JavaScript",
"bundler",
"Tools"
],
"relatedLinks": [
{
"title": "Snowpack",
"url": "https://www.snowpack.dev/"
}
]
},
{
"date": "2020-01-12T12:53:38.709Z",
"title": "qawolf/qawolf: 🐺Create browser tests 10x faster",
"url": "https://github.com/qawolf/qawolf",
"content": "PupeteerとJestを使ったテストフレームワーク。\n操作を記憶してテストケースとSelectorを作成でき、CIに実行結果の動画をアップロードのサポートなどをしている。\nAutomatic waiting、Keyboard eventsなどをサポートしている",
"tags": [
"Chrome",
"testing",
"library",
"TypeScript"
],
"relatedLinks": [
{
"title": "QA Wolf",
"url": "https://docs.qawolf.com/"
}
]
},
{
"date": "2020-01-13T02:29:47.051Z",
"title": "babel/preset-modules: A Babel preset that targets modern browsers by fixing engine bugs (will be merged into preset-env eventually)",
"url": "https://github.com/babel/preset-modules",
"content": "@babel/preset-envにマージされる予定の、Modern Browser向けの最適化を目的にしたBabel Preset。\nMSEdgeなどのES Modulesをサポートしているが一部構文にバグがあるケースなどにも対応している。",
"tags": [
"babel",
"library",
"JavaScript"
],
"relatedLinks": []
},
{
"date": "2020-01-13T10:55:27.011Z",
"title": "GoogleCloudPlatform/wombat-dressing-room: proxy designed to reduce the attack surface of npm publish",
"url": "https://github.com/GoogleCloudPlatform/wombat-dressing-room",
"content": "GitHubリポジトリに紐付いたnpm publishをするための認証トークンを発行するシステム。npm registryに対する2FA Proxy。\nトークンと該当するGitHubのタグがある場合にのみpublishでき、トークンはパッケージごとに異なるため流出しても特定のパッケージのみに影響を抑える目的。",
"tags": [
"npm",
"Github",
"security"
],
"relatedLinks": [
{
"title": "Wombat Dressing Room, an npm publication proxy on GCP | Google Open Source Blog",
"url": "https://opensource.googleblog.com/2020/01/wombat-dressing-room-npm-publication_10.html"
}
]
},
{
"date": "2020-01-14T13:44:02.828Z",
"title": "Release v7.0.0-esm1 (experimental) · mochajs/mocha",
"url": "https://github.com/mochajs/mocha/releases/tag/v7.0.0-esm1",
"content": "MochaのES Modules対応のExperimental版がリリースされた",
"tags": [
"node.js",
"testing",
"library",
"ReleaseNote"
],
"relatedLinks": []
},
{
"date": "2020-01-17T11:58:23.475Z",
"title": "mustache.js/CHANGELOG.md at master · janl/mustache.js",
"url": "https://github.com/janl/mustache.js/blob/master/CHANGELOG.md#400--16-january-2020",
"content": "テンプレートエンジンであるmustache 4.0.0リリース。\n`.to_html()`メソッドの削除、テンプレートのキャッシュの仕組みをカスタマイズできるようになるなど。",
"tags": [
"JavaScript",
"library",
"ReleaseNote"
],
"relatedLinks": []
},
{
"date": "2020-01-17T12:09:30.852Z",
"title": "wasm3/wasm3: 🚀 The fastest WebAssembly interpreter",
"url": "https://github.com/wasm3/wasm3",
"content": "WebAssemblyのインタープリター",
"tags": [
"WebAssembly"
],
"relatedLinks": []
},
{
"date": "2020-01-19T14:49:22.585Z",
"title": "logaretm/villus: A tiny and fast GraphQL client for Vue.js",
"url": "https://github.com/logaretm/villus",
"content": "Vue.js向けのGraphQLクライアントライブラリ。",
"tags": [
"Vue",
"GraphQL",
"library"
],
"relatedLinks": [
{
"title": "Announcing Villus - A tiny and fast GraphQL Client for Vue.js - Abdelrahman' Blog",
"url": "https://logaretm.com/blog/2020-01-11-announcing-villus/"
}
]
},
{
"date": "2020-01-19T22:58:13.423Z",
"title": "Release 3.0.0 · avajs/ava",
"url": "https://github.com/avajs/ava/releases/tag/v3.0.0",
"content": "AVA 3リリース。\n`ava debug`コマンドの追加、`--node-arguments`オプションの追加。\nNode 10未満のサポート終了、Babelが同梱ではなくなり別パッケージとしてインストールする形に変更、ES Modulesのサポートなど",
"tags": [
"node.js",
"testing",
"library",
"ReleaseNote"
],
"relatedLinks": []
},
{
"date": "2020-01-20T10:45:07.321Z",
"title": "gjtorikian/isBinaryFile: Detects if a file is binary in Node.js. Similar to Perl's -B",
"url": "https://github.com/gjtorikian/isBinaryFile",
"content": "ファイルがバイナリかどうかを判定するNode.jsライブラリ",
"tags": [
"node.js",
"library"
],
"relatedLinks": []
},
{
"date": "2020-01-23T12:06:31.761Z",
"title": "microsoft/playwright: Node library to automate Chromium, Firefox and WebKit browsers",
"url": "https://github.com/microsoft/playwright",
"content": "Chromium、WebKit、Firefoxを操作できるNode.jsライブラリ。\nPuppeteerと同じチームが開発していて、クロスブラウザ向けの抽象化されたAPIを提供する目的。\nWebDriverよりも機能的なDriver、分かりやすいAPI、setTimeout-freeな自動化を目的としている",
"tags": [
"node.js",
"JavaScript",
"browser",
"Chrome",
"Firefox",
"webkit",
"library",
"Selenium",
"webdriver"
],
"relatedLinks": []
},
{
"date": "2020-01-23T12:16:39.218Z",
"title": "Release 🎉 HTM 3 is here! · developit/htm",
"url": "https://github.com/developit/htm/releases/tag/3.0.0",
"content": "HTM 3リリース。\nStaticなTreeを判別してキャッシュ出来るように、Preact Xに対応、`babel-plugin-htm`に自動importのオプションを追加など",
"tags": [
"JavaScript",
"library",
"ReleaseNote"
],
"relatedLinks": []
},
{
"date": "2020-01-27T14:24:56.032Z",
"title": "Release v4.8.0 · pnpm/pnpm",
"url": "https://github.com/pnpm/pnpm/releases/tag/v4.8.0",
"content": "パッケージ管理ツールのpnpm 4.8.0リリース。\nモジュールのインタラクティブアップデートを行う`pnpm update --interactive`の追加など",
"tags": [
"npm",
"ReleaseNote"
],
"relatedLinks": []
},
{
"date": "2020-01-27T14:37:25.842Z",
"title": "Release v1.30.0 · rollup/rollup",
"url": "https://github.com/rollup/rollup/releases/tag/v1.30.0",
"content": "Rollup 1.30.0リリース。\ndynamic importsのsplit chunksのロジックの改善。\nCode Splitting時にentry chunksで空importを行う最適化のためをON/OFFできるようにする`hoistTransitiveImports`オプションの追加など",
"tags": [
"JavaScript",
"bundler",
"ReleaseNote"
],
"relatedLinks": []
},
{
"date": "2020-01-27T14:38:26.345Z",
"title": "Release 3.1.0 · avajs/ava",
"url": "https://github.com/avajs/ava/releases/tag/v3.1.0",
"content": "AVA 3.1.0リリース。\n`@ava/typescript`パッケージでTypeScriptサポートなど",
"tags": [
"JavaScript",
"TypeScript",
"testing",
"ReleaseNote"
],
"relatedLinks": []
},
{
"date": "2020-01-30T01:51:16.158Z",
"title": "Release v2.1.0 · puppeteer/puppeteer",
"url": "https://github.com/puppeteer/puppeteer/releases/tag/v2.1.0",
"content": "Puppeteer v2.1.0 リリース。\nChromium 80へアップデート、Firefoxをサポートなど",
"tags": [
"JavaScript",
"Chrome",
"browser",
"library",
"ReleaseNote"
],
"relatedLinks": []
},
{
"date": "2020-02-01T12:15:02.630Z",
"title": "cutenode/mingine: A module to get the minimum usable engine(s)",
"url": "https://github.com/cutenode/mingine",
"content": "依存してるnpmパッケージの`engines`フィールドから、`engines`ごとのminimumなバージョンを算出するライブラリ",
"tags": [
"npm",
"node.js",
"Tools",
"library"
],
"relatedLinks": []
},
{
"date": "2020-02-05T03:40:30.943Z",
"title": "Release Releaaaaaaaaaaaaaaaaaaase · preactjs/preact",
"url": "https://github.com/preactjs/preact/releases/tag/10.3.0",
"content": "Preact 10.3.0リリース\nBuilt-In要素を継承したCustom Elementに対応、バグ修正など",
"tags": [
"React",
"JavaScript",
"ReleaseNote"
],
"relatedLinks": []
},
{
"date": "2020-02-11T06:31:15.021Z",
"title": "single-spa/single-spa: Microfrontends made easy",
"url": "https://github.com/single-spa/single-spa",
"content": "各種フレームワーク向けのアダプターを用意してるMicrofrontendsフレームワーク。\nそれぞれのフレームワークを使ったアプリを同一ページで扱うために必要なライフサイクルを管理するフレームワーク。\n",
"tags": [
"MicroFrontend",
"library"
],
"relatedLinks": []
},
{
"date": "2020-02-11T06:50:47.068Z",
"title": "Himenon/code-dependency: A work efficiency tool for visualizing code dependencies on a browser.",
"url": "https://github.com/Himenon/code-dependency",
"content": "dependency-cruiserを使ったモジュールの依存関係図を生成してブラウザで表示できるツール",
"tags": [
"JavaScript",
"Tools",
"server"
],
"relatedLinks": [
{
"title": "dependency-cruiser",
"url": "https://qiita.com/himenoglyph/items/f28a9905e3b30e6cb213"
}
]
},
{
"date": "2020-02-11T06:54:58.659Z",
"title": "Release 3.3.0 · avajs/ava",
"url": "https://github.com/avajs/ava/releases/tag/v3.3.0",
"content": "AVA 3.3.0リリース。\nECMAScript Modulesなテストファイルに対応",
"tags": [
"JavaScript",
"node.js",
"library",
"testing",
"ReleaseNote"
],
"relatedLinks": []
},
{
"date": "2020-02-11T07:14:27.887Z",
"title": "Release v1.0.0 · scala-js/scala-js",
"url": "https://github.com/scala-js/scala-js/releases/tag/v1.0.0",
"content": "Scala.js 1.0.0リリース",
"tags": [
"scala",
"JavaScript",
"ReleaseNote"
],
"relatedLinks": []
},
{
"date": "2020-02-11T16:20:49.290Z",
"title": "myliang/x-spreadsheet: A web-based JavaScript(canvas) spreadsheet",
"url": "https://github.com/myliang/x-spreadsheet",
"content": "依存のないSpreadSheetの実装ライブラリ。Canvasを使って描画をしている。",
"tags": [
"JavaScript",
"library",
"canvas"
],
"relatedLinks": []
},
{
"date": "2020-02-17T15:00:49.341Z",
"title": "evanw/esbuild: An extremely fast JavaScript bundler and minifier",
"url": "https://github.com/evanw/esbuild",
"content": "Go言語製のJavaScript Bundler。\nCommonJS/ES Modules、Source Map、Minifier、JSXなどに対応している",
"tags": [
"golang",
"bundler"
],
"relatedLinks": []
},
{
"date": "2020-02-17T15:51:01.661Z",
"title": "volument/baretest: An extremely fast and simple JavaScript test runner.",
"url": "https://github.com/volument/baretest",
"content": "自己実行可能なテストフレームワーク。\n`test`関数といくつかのライフサイクルを提供する小さなテストフレームワーク。",
"tags": [
"JavaScript",
"testing",
"library"
],
"relatedLinks": [
{
"title": "Baretest — An extremely minimalistic alternative to Jest",
"url": "https://volument.com/baretest"
}
]
},
{
"date": "2020-02-17T16:10:07.714Z",
"title": "Release v2.0 · FullHuman/purgecss",
"url": "https://github.com/FullHuman/purgecss/releases/tag/v2.0.5",
"content": "使われてないCSSを削除するPurgeCSS 2.0.0リリース。\n非同期化、CSS Variablesの対応、Node.js 8以下のサポート終了",
"tags": [
"CSS",
"Tools",
"ReleaseNote"
],
"relatedLinks": [
{
"title": "PurgeCSS 2.0 - Full Human - Medium",
"url": "https://medium.com/full-human/purgecss-2-0-c0e812e6c4f6"
}
]
},
{
"date": "2020-02-24T11:27:11.679Z",
"title": "benawad/destiny: Prettier for File Structures",
"url": "https://github.com/benawad/destiny",
"content": "プロジェクトのファイル構造をコンポーネントごとに分けるように編集するツール",
"tags": [
"JavaScript",
"Tools",
"React"
],
"relatedLinks": []
},
{
"date": "2020-02-24T11:42:00.394Z",
"title": "Release Initial Release: 1.0.0 · reduxjs/cra-template-redux",
"url": "https://github.com/reduxjs/cra-template-redux/releases/tag/v1.0.0",
"content": "create-react-app向けのReduxテンプレート。\n`npx create-react-app my-app --template redux` でセットアップできる。\nRedux Toolkitを利用している",
"tags": [
"React",
"redux",
"Tools"
],
"relatedLinks": [
{
"title": "Redux Toolkit | Redux Toolkit",
"url": "https://redux-toolkit.js.org/"
}
]
},
{
"date": "2020-02-24T11:50:01.205Z",
"title": "suchipi/hex-engine: A modern 2D game engine for the browser.",
"url": "https://github.com/suchipi/hex-engine",
"content": "Canvasを使った2Dゲームエンジンライブラリ。ReactインスパイアなAPIを持つ。\n音声同期、スプライトシートやアニメーション、物理エンジンなどのサポート。\nまたAseprite、Tiled、BMFontなどのオーサリングツールもサポートしている。",
"tags": [
"canvas",
"game",
"library",
"JavaScript"
],
"relatedLinks": [
{
"title": "Aseprite - Animated sprite editor & pixel art tool",
"url": "https://www.aseprite.org/"
},
{
"title": "Tiled Map Editor | A flexible level editor",
"url": "https://www.mapeditor.org/"
},
{
"title": "BMFont - AngelCode.com",
"url": "https://www.angelcode.com/products/bmfont/"
}
]
},
{
"date": "2020-02-24T12:59:31.999Z",
"title": "Release 3.4.0 · avajs/ava",
"url": "https://github.com/avajs/ava/releases/tag/v3.4.0",
"content": "AVA 3.4.0リリース。\nテストを失敗させずにAssertionを試せる`t.try()`のサポートなど",
"tags": [
"JavaScript",
"testing",
"ReleaseNote"
],
"relatedLinks": []
},
{
"date": "2020-02-28T11:12:20.646Z",
"title": "Akryum/guijs: 🐣️ The app that makes your #devlife easier.",
"url": "https://github.com/Akryum/guijs",
"content": "JavaScriptプロジェクト向けのGUIアプリ",
"tags": [
"node.js",
"GUI"
],
"relatedLinks": []
},
{
"date": "2020-03-01T03:17:44.129Z",
"title": "edtr-io/edtr-io: Edtr.io is an open source WYSIWYG in-line web editor written in React. Its plugin architecture makes Edtr.io lean and extensive at the same time.",
"url": "https://github.com/edtr-io/edtr-io",
"content": "ReactベースのWYSIWYGエディタ。\n",
"tags": [
"JavaScript",
"library",
"React"
],
"relatedLinks": []
},
{
"date": "2020-03-01T08:28:44.992Z",
"title": "jaredpalmer/tsdx: Zero-config CLI for TypeScript package development",
"url": "https://github.com/jaredpalmer/tsdx",
"content": "TypeScriptでnpmパッケージを開発する向けのツールキット。\nBuild、Test、Lintや最適化周りの設定などがビルトインされている。",
"tags": [
"TypeScript",
"JavaScript",
"npm",
"Tools"
],
"relatedLinks": []
},
{
"date": "2020-03-02T14:07:32.208Z",
"title": "facebookexperimental/rome: An experimental JavaScript toolchain",
"url": "https://github.com/facebookexperimental/rome",
"content": "外部依存のないJavaScript compiler、bundler、Linter、Formatter、開発サーバなどを含むツールキット。\nBabelとYarnを作ったsebmck製。",
"tags": [
"JavaScript",
"Tools"
],
"relatedLinks": []
},
{
"date": "2020-03-02T14:33:15.544Z",
"title": "petersalomonsen/wasm-git: GIT for nodejs and the browser using https://libgit2.org compiled to WebAssembly with https://emscripten.org",
"url": "https://github.com/petersalomonsen/wasm-git",
"content": "libgitをEmscriptenでWebAssemblyにコンパイルしたライブラリ。\nブラウザとNode.jsで動作する",
"tags": [
"git",
"WebAssembly",
"library"
],
"relatedLinks": []
},
{
"date": "2020-03-02T14:34:45.026Z",
"title": "TomPrograms/stormdb: 🌩️ StormDB is a tiny, lightweight, 0 dependency, easy-to-use JSON-based database for NodeJS, the browser or Electron.",
"url": "https://github.com/tomprograms/stormdb",
"content": "ブラウザ、Node.jsで動作するJSONデータベースライブラリ。\n",
"tags": [
"JavaScript",
"node.js",
"library",
"CoreData",
"JSON"
],
"relatedLinks": []
},
{
"date": "2020-03-02T14:37:21.530Z",
"title": "JasonEtco/actions-toolkit: 🛠 A toolkit for building GitHub Actions in Node.js",
"url": "https://github.com/JasonEtco/actions-toolkit",
"content": "GitHub Actionsを書くための処理を集めたJavaScriptライブラリ、ツールキット。\n",
"tags": [
"JavaScript",
"library",
"Github",
"Actions"
],
"relatedLinks": []
},
{
"date": "2020-03-06T15:22:32.482Z",
"title": "Release v2.0.0 · rollup/rollup",
"url": "https://github.com/rollup/rollup/releases/tag/v2.0.0",
"content": "Rollup 2.0.0リリース。\nNode 10未満のサポート終了、APIのリネームや同梱されるASTの型定義の変更など。\nまたNode.js 13のconditional exportsに試験的に対応など",
"tags": [
"JavaScript",
"bundler",
"ReleaseNote"
],
"relatedLinks": []
},
{
"date": "2020-03-09T00:26:38.473Z",
"title": "Release v6.0.0 · immerjs/immer",
"url": "https://github.com/immerjs/immer/releases/tag/v6.0.0",
"content": "immer.js 6.0.0リリース。\nES5やMapのサポートなどを明示的なメソッドを呼び出しするように変更など",
"tags": [
"JavaScript",
"library",
"ReleaseNote"
],
"relatedLinks": []
},
{
"date": "2020-03-09T13:41:40.960Z",
"title": "klaussinani/qoa: Minimal interactive command-line prompts",
"url": "https://github.com/klaussinani/qoa",
"content": "インタラクティブなCUIを提供するためのNode.jsライブラリ。\nテキスト入力や選択肢などのインタラクティブなプロンプトを提供する",
"tags": [
"node.js",
"library",
"console"
],
"relatedLinks": []
},
{
"date": "2020-03-11T10:13:41.341Z",
"title": "Release Worker Plugin 4.0 · GoogleChromeLabs/worker-plugin",
"url": "https://github.com/GoogleChromeLabs/worker-plugin/releases/tag/4.0.2",
"content": "webpack向けのWorker Plugin 4.0リリース。\nES Modulesのサポート、`worker-plugin/loader!<path>`のサポート、`SharedWorker`のサポートなど",
"tags": [
"webpack",
"webworker",
"plugin",
"ReleaseNote"
],
"relatedLinks": []
},
{
"date": "2020-03-14T20:08:08.238Z",
"title": "vriad/zod: Typescript-first schema validation with static type inference",
"url": "https://github.com/vriad/zod",
"content": "TypeScriptの型チェックとRuntimeでの型チェックを行うスキーマライブラリ。\nライブラリが提供するAPIを使ってスキーマを定義する",
"tags": [
"TypeScript",
"library"
],
"relatedLinks": [
{
"title": "Designing the perfect Typescript schema validation library",
"url": "https://vriad.com/blog/zod/"
}
]
},
{
"date": "2020-03-17T00:37:50.936Z",
"title": "lukeed/uid: A tiny (134B) and fast utility to generate random IDs of fixed length",
"url": "https://github.com/lukeed/uid",
"content": "指定文字数のランダムな英数文字列を生成するライブラリ",
"tags": [
"JavaScript",
"library"
],
"relatedLinks": []
},
{
"date": "2020-03-17T11:43:19.565Z",
"title": "Release 6.0.0-beta.0 (2020-03-11) · GoogleChrome/lighthouse",
"url": "https://github.com/GoogleChrome/lighthouse/releases/tag/v6.0.0-beta.0",
"content": "Lighthouse 6.0.0βリリース。\nMetricsの更新、performanceスコア計算方法の変更。\nまた、Cumulative Layout Shift (CLS)、文字コード、アクセシビリティに関するAuditの追加など",
"tags": [
"Chrome",
"performance",
"Tools",
"ReleaseNote"
],
"relatedLinks": [
{
"title": "Cumulative Layout Shift (CLS)",
"url": "https://web.dev/cls/"
}
]
},
{
"date": "2020-03-18T17:46:54.447Z",
"title": "ryanelian/ts-polyfill: Runtime polyfills for TypeScript libs, powered by core-js!",
"url": "https://github.com/ryanelian/ts-polyfill",
"content": "tsconfig.jsonの`lib`に合わせたpolyfillを提供するライブラリ",
"tags": [
"TypeScript",
"library"
],
"relatedLinks": []
},
{
"date": "2020-03-20T06:24:31.877Z",
"title": "Release v7.0.0 · nestjs/nest",
"url": "https://github.com/nestjs/nest/releases/tag/v7.0.0",
"content": "NestJS 7リリース。\n`type-graphql`パッケージから`@nestjs/graphql`パッケージに移行、\n`ParseArrayPipe`と`ParseBoolPipe`のtransformer pipeを追加など",
"tags": [
"JavaScript",
"node.js",
"library",
"ReleaseNote"
],
"relatedLinks": [
{
"title": "Announcing NestJS 7: What’s New - Trilon Consulting",
"url": "https://trilon.io/blog/announcing-nestjs-7-whats-new"
}
]
},
{
"date": "2020-03-22T10:24:52.076Z",
"title": "elninotech/uppload: 📁 Uppload is a better JavaScript image uploader with 30+ plugins",
"url": "https://github.com/elninotech/uppload",
"content": "プラグインで様々なサービスに対応している画像アップロードライブラリ",
"tags": [
"JavaScript",
"library"
],
"relatedLinks": []
},
{
"date": "2020-03-23T23:20:41.433Z",
"title": "luciopaiva/heapify: The fastest JavaScript priority queue out there. Zero dependencies.",
"url": "https://github.com/luciopaiva/heapify",
"content": "優先度付きキューの実装ライブラリ",
"tags": [
"JavaScript",
"library"
],
"relatedLinks": []
},
{
"date": "2020-03-24T00:21:08.135Z",
"title": "luruke/browser-2020: Things you can do with a browser in 2020 ☕️",
"url": "https://github.com/luruke/browser-2020",
"content": "ブラウザ/Chromeに実装されている新しいAPIについての概要をまとめたもの。",
"tags": [
"browser",
"WebPlatformAPI",
"article",
"Chrome"
],
"relatedLinks": []
},
{
"date": "2020-03-25T11:10:47.003Z",
"title": "Release v1.3.0 · reduxjs/redux-toolkit",
"url": "https://github.com/reduxjs/redux-toolkit/releases/tag/v1.3.0",
"content": "Redux Toolkit 1.3.0リリース。\nステートの正規化を管理を手助けする`createEntityAdapter`、非同期処理のパターンを提供する`createAsyncThunk`の追加。\nStoreのmutationを検知してエラー通知する仕組みの追加など",
"tags": [
"redux",
"JavaScript",
"library",
"ReleaseNote"
],
"relatedLinks": []
},
{
"date": "2020-03-27T01:58:45.331Z",
"title": "chrvadala/node-ble: Bluetooth Low Energy (BLE) library written with pure Node.js (no bindings) - baked by Bluez via DBus",
"url": "https://github.com/chrvadala/node-ble",
"content": "Pure Node.jsなBLEライブラリ",
"tags": [
"node.js",
"Bluetooth",
"library"
],
"relatedLinks": []
},
{
"date": "2020-03-27T02:00:15.787Z",
"title": "kriasoft/node-sqlite at v4",
"url": "https://github.com/kriasoft/node-sqlite/tree/v4",
"content": "Node.jsのSQLiteクライアントライブラリ",
"tags": [
"SQLite",
"node.js",
"library"
],
"relatedLinks": []
},
{
"date": "2020-03-28T06:45:38.540Z",
"title": "heremaps/harp.gl: harp.gl - web map rendering engine",
"url": "https://github.com/heremaps/harp.gl",
"content": "three.jsを使った3Dマップレンダリングエンジンライブラリ",
"tags": [
"JavaScript",
"WebGL",
"library"
],
"relatedLinks": []
},
{
"date": "2020-04-03T11:42:42.190Z",
"title": "lirantal/npq: 🎖safely* install packages with npm or yarn by auditing them as part of your install process",
"url": "https://github.com/lirantal/npq",
"content": "npmやyarnでパッケージをインストールする際に、パッケージのダウンロード数、READMEのうむ、インストールスクリプト、Snykでのチェックを行うCLI",
"tags": [
"npm",
"console",
"Tools"
],
"relatedLinks": []
},
{
"date": "2020-04-03T12:25:34.089Z",
"title": "Release ES2020 Candidate · tc39/ecma262",
"url": "https://github.com/tc39/ecma262/releases/tag/es2020",
"content": "ES2020のリリース候補が公開された。\n`import.meta`もES2020に含まれている。",
"tags": [
"ECMAScript",
"spec",
"ReleaseNote"
],
"relatedLinks": []
},
{
"date": "2020-04-03T12:29:25.931Z",
"title": "engine262/engine262: An implementation of ECMA-262 in JavaScript",
"url": "https://github.com/engine262/engine262",
"content": "JavaScriptによるECMAScript実装。\nJavaScript開発者が新しい言語機能のプロトタイピングを簡単にできるようにするのが目的",
"tags": [
"JavaScript",
"ECMAScript",
"spec"
],
"relatedLinks": []
},
{
"date": "2020-04-07T01:34:36.657Z",
"title": "caroso1222/notyf: 👻 A minimalistic, responsive, vanilla JavaScript library to show toast notifications.",
"url": "https://github.com/caroso1222/notyf",
"content": "依存がないToast通知を行うUIライブラリ。",
"tags": [
"JavaScript",
"UI",
"library"
],
"relatedLinks": []
},
{
"date": "2020-04-08T17:41:10.032Z",
"title": "Release 10.4.0 · preactjs/preact",
"url": "https://github.com/preactjs/preact/releases/tag/10.4.0",
"content": "Preact 10.4.0リリース。\nvnodeの厳密な比較によるパフォーマンス改善、SSR時にhydrationがうまく行かなかった際のfallbackを追加など",
"tags": [
"React",
"JavaScript",
"library",
"ReleaseNote"
],
"relatedLinks": []
},
{
"date": "2020-04-13T09:29:23.300Z",
"title": "Hopding/pdf-lib: Create and modify PDF documents in any JavaScript environment",
"url": "https://github.com/Hopding/pdf-lib",
"content": "PDFを作成できるNode.jsライブラリ",
"tags": [
"PDF",
"library",
"node.js"
],
"relatedLinks": []
},
{
"date": "2020-04-16T22:13:31.861Z",
"title": "Release v3.0.0 · puppeteer/puppeteer",
"url": "https://github.com/puppeteer/puppeteer/releases/tag/v3.0.0",
"content": "Puppeteer 3.0.0リリース。\nChromium 81にアップデート、Firefox Nightlyのバイナリをインストールできるように、Node.js 8のサポート終了など。\n",
"tags": [
"Chrome",
"Firefox",
"library",
"ReleaseNote"
],
"relatedLinks": []
},
{
"date": "2020-04-19T11:06:52.662Z",
"title": "vime-js/vime: All your media player needs in one place - a modern alternative to Videojs and Plyr. Supports Html5, Hls, Dash, YouTube, Vimeo, Dailymotion and more to come.",
"url": "https://github.com/vime-js/vime",
"content": "プラグインで拡張できるVideoプレイヤーライブラリ。\n機能ごとにモジュール化されているため、必要なモジュールだけを利用できる。",
"tags": [
"JavaScript",
"plugin",
"video",
"library"
],
"relatedLinks": []
},
{
"date": "2020-04-19T11:42:03.689Z",
"title": "aeroheim/midori: library for animated image backgrounds",
"url": "https://github.com/aeroheim/midori",
"content": "Canvas/WebGLを使った背景画像のアニメーションを描画するライブラリ。\n読み込んだ背景画像に対してtransitionsやeffectsを設定できる。",
"tags": [
"JavaScript",
"WebGL",
"library"
],
"relatedLinks": []
},
{
"date": "2020-04-19T11:43:52.042Z",
"title": "yusufnb/verify-json: verify-json",
"url": "https://github.com/yusufnb/verify-json",
"content": "JSONバリデーションライブラリ。\nスキーマを定義してJSONオブジェクトをバリデーションできる",
"tags": [
"JSON",
"library"
],
"relatedLinks": []
},
{
"date": "2020-04-19T14:28:25.598Z",
"title": "Release v1.7.0 · pikapkg/snowpack",
"url": "https://github.com/pikapkg/snowpack/releases/tag/v1.7.0",
"content": "Snowpack 1.7.0リリース。\n`--env`のサポート、Babelプラグインの更新、JSXとTypeScriptのサポート。\nまた Snowpack 2.0に向けて変更予定について書かれている",
"tags": [
"npm",
"browser",
"Tools",
"ReleaseNote",
"bundler"
],
"relatedLinks": []
},
{
"date": "2020-04-21T23:32:48.309Z",
"title": "zeit/swr: React Hooks library for remote data fetching",
"url": "https://github.com/zeit/swr",
"content": "データの取得を扱うReact Hooksライブラリ。\nデータの取得、リトライ、`mutate`による再取得、定期的な取得、SSRの対応、Suspenseの対応など",
"tags": [