-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
domain-2023.json
10738 lines (10738 loc) · 440 KB
/
domain-2023.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": "2023-01-01T11:52:17.286Z",
"title": "Prototype Pollution in JSON5 via Parse Method · CVE-2022-46175 · GitHub Advisory Database",
"url": "https://github.com/advisories/GHSA-9c47-m6qq-7p4h",
"content": "JSON5にprototype pollutionの脆弱性があり、2.2.2と1.0.2で修正された。\n",
"tags": [
"JSON",
"JavaScript",
"library",
"security",
"ReleaseNote"
],
"relatedLinks": [
{
"title": "Release v2.2.2 · json5/json5",
"url": "https://github.com/json5/json5/releases/tag/v2.2.2"
},
{
"title": "Release v1.0.2 · json5/json5",
"url": "https://github.com/json5/json5/releases/tag/v1.0.2"
}
]
},
{
"date": "2023-01-04T01:34:07.505Z",
"title": "Release v0.16.13 · evanw/esbuild",
"url": "https://github.com/evanw/esbuild/releases/tag/v0.16.13",
"content": "esbuild v0.16.13リリース。\n`--metafile`でbundle時のメタデータを出力し、メタデータを可視化できるビューアサイトの実装など",
"tags": [
"JavaScript",
"Tools",
"ReleaseNote"
],
"relatedLinks": []
},
{
"date": "2023-01-06T03:33:41.162Z",
"title": "Release v6.4.0 · lerna/lerna",
"url": "https://github.com/lerna/lerna/releases/tag/v6.4.0",
"content": "lerna v6.4.0リリース。\n`lerna watch`コマンドの追加など",
"tags": [
"JavaScript",
"monorepo",
"ReleaseNote"
],
"relatedLinks": []
},
{
"date": "2023-01-12T15:28:34.574Z",
"title": "Release v1.10.0 · remix-run/remix",
"url": "https://github.com/remix-run/remix/releases/tag/remix%401.10.0",
"content": "Remix 1.10.0リリース。\n`@remix-run/router`というReact Routerとの共通基盤となるパッケージ(バイナリ)を使い再構築。\n`shouldRevalidate`関数のサポート、`useNavigation`/`useRevalidator`/`useRouteLoaderData` Hook APIの追加など",
"tags": [
"Remix",
"ReleaseNote"
],
"relatedLinks": []
},
{
"date": "2023-01-13T01:12:42.869Z",
"title": "Release v3.10.0 · rollup/rollup",
"url": "https://github.com/rollup/rollup/releases/tag/v3.10.0",
"content": "Rollup v3.10.0リリース。\noptional chainingに対するTree Shakingのサポートなど",
"tags": [
"rollup",
"ReleaseNote",
"library"
],
"relatedLinks": []
},
{
"date": "2023-01-13T02:20:26.977Z",
"title": "Dunks1980/bay.js: An easy to use, lightweight library for web-components.",
"url": "https://github.com/Dunks1980/bay.js",
"content": "`<template>`からWebComponentを作成して扱えるライブラり",
"tags": [
"JavaScript",
"template",
"WebComponents",
"library"
],
"relatedLinks": []
},
{
"date": "2023-01-13T11:33:14.597Z",
"title": "rimraf/CHANGELOG.md at main · isaacs/rimraf",
"url": "https://github.com/isaacs/rimraf/blob/main/CHANGELOG.md#v40",
"content": "rimraf 4.0リリース。\nglobサポートを削除、Promiseを返すように変更、Node 14未満のサポート終了、TypeScriptでの書き直し。\nまたCJSとESMの両方に対応し、Windowsでのパフォーマンスの改善など",
"tags": [
"node.js",
"library",
"ReleaseNote"
],
"relatedLinks": []
},
{
"date": "2023-01-14T13:54:20.193Z",
"title": "tsmodule/tsmodule: TypeScript to ES Module loader and compiler.",
"url": "https://github.com/tsmodule/tsmodule",
"content": "TypeScriptでESMなパッケージを開発するツールキット",
"tags": [
"TypeScript",
"ECMAScript",
"Tools"
],
"relatedLinks": []
},
{
"date": "2023-01-14T14:30:49.055Z",
"title": "giusepperaso/structura.js: A very fast and lightweight Typescript library to create immutable states with a mutable syntax",
"url": "https://github.com/GiuseppeRaso/structura.js",
"content": "ImmerライクなImmutable処理のAPIを提供するライブラリ。\nFreezeをTypeScriptの型で表現することによって、オーバヘッドを減らしている。\n",
"tags": [
"JavaScript",
"library"
],
"relatedLinks": []
},
{
"date": "2023-01-14T14:34:50.967Z",
"title": "Release v0.17.0 · evanw/esbuild",
"url": "https://github.com/evanw/esbuild/releases/tag/v0.17.0",
"content": "esbuild v0.17.0リリース。\nincremental buildに関する処理を`context` APIに移動。\n`watch`と`serve`を同時に利用できるように、またServer Send Eventを使ったLive Reloadに対応、開発サーバがHTTPSに対応など",
"tags": [
"JavaScript",
"Tools",
"ReleaseNote"
],
"relatedLinks": []
},
{
"date": "2023-01-15T03:13:10.618Z",
"title": "Release v0.197.0 · facebook/flow",
"url": "https://github.com/facebook/flow/releases/tag/v0.197.0",
"content": "Flow v0.197.0リリース。\nLocal Type Inferenceをopt-inで利用できるように。",
"tags": [
"flowtype",
"ReleaseNote"
],
"relatedLinks": [
{
"title": "Introducing: Local Type Inference for Flow | by Michael Matson Vitousek | Flow | Medium",
"url": "https://medium.com/flow-type/introducing-local-type-inference-for-flow-6af65b7830aa"
}
]
},
{
"date": "2023-01-15T03:24:23.824Z",
"title": "LyraSearch/lyra: 🌌 Fast, in-memory, typo-tolerant, full-text search engine written in TypeScript.",
"url": "https://github.com/LyraSearch/lyra",
"content": "TypeScriptで書かれた全文検索エンジン",
"tags": [
"TypeScript",
"search ",
"library"
],
"relatedLinks": []
},
{
"date": "2023-01-16T03:14:17.746Z",
"title": "azu/eslint-cjs-to-esm: ESLint wrapper for migration from CJS to ESM.",
"url": "https://github.com/azu/eslint-cjs-to-esm",
"content": "CommonJSからESMへのマイグレーションを補助するツール。\nESLintをラップしていて、CJS to ESMを扱うルールをビルトインしている。\nimportしてるパスへの`.js`の追加や`require`/`exports`などのCJSでしか使えない機能の禁止など",
"tags": [
"node.js",
"JavaScript",
"ECMAScript",
"CommonJS",
"Tools",
"ESLint"
],
"relatedLinks": []
},
{
"date": "2023-01-18T03:41:25.808Z",
"title": "shuding/react-wrap-balancer: Simple React Component That Makes Titles More Readable",
"url": "https://github.com/shuding/react-wrap-balancer",
"content": "タイトル文字列の折り返しを読みやすくするためのReactコンポーネント",
"tags": [
"JavaScript",
"React",
"CSS",
"library",
"english"
],
"relatedLinks": [
{
"title": "Improving readability with React Wrap Balancer – Vercel",
"url": "https://vercel.com/blog/react-wrap-balancer#innovation-in-text-wrapping"
}
]
},
{
"date": "2023-01-18T04:17:18.116Z",
"title": "azu/tsconfig-to-dual-package: Node.js dual package tool that add package.json to tsconfig's `outDir`",
"url": "https://github.com/azu/tsconfig-to-dual-package",
"content": "TypeScriptでCJSとESMのDual packageを作成するためのツール。\n`tsc`のビルド結果があるディレクトリに対して、CJSとESMに対応した`package.json`を追加することでDual packageを作成する",
"tags": [
"TypeScript",
"library",
"node.js"
],
"relatedLinks": []
},
{
"date": "2023-01-22T22:16:06.489Z",
"title": "Brooooooklyn/canvas: High performance skia binding to Node.js. Zero system dependencies and pure npm packages without any postinstall scripts nor node-gyp.",
"url": "https://github.com/Brooooooklyn/canvas",
"content": "native addonsを使ったskia backendのCanvas APIの実装ライブラリ。\nアーキテクチャに合わせたoptionalDependenciesでprebuildのSkiaを含めたバイナリがダウンロードされるため、システムに対して事前に依存をインストールを追加する必要がない",
"tags": [
"node.js",
"canvas",
"library"
],
"relatedLinks": []
},
{
"date": "2023-01-22T22:33:33.058Z",
"title": "Release v2.0.0-alpha.1 · reduxjs/redux-toolkit",
"url": "https://github.com/reduxjs/redux-toolkit/releases/tag/v2.0.0-alpha.1",
"content": "Redux Toolkit v2.0.0-alpha.1リリース。\nESM形式とCJS形式のDual Packageへの変更、`thunk`関数を`redux-thunk`パッケージへ移動。\nv2正式版にはImmer 10を含める予定など",
"tags": [
"library",
"redux",
"ReleaseNote"
],
"relatedLinks": [
{
"title": "Immer 10 proposals: Drop promises, default export, array.length patches, ES5 mode, and make getter / setter support opt-in · Issue #1015 · immerjs/immer",
"url": "https://github.com/immerjs/immer/issues/1015"
}
]
},
{
"date": "2023-01-22T23:34:39.829Z",
"title": "Q1 Roadmap · Issue #17475 · denoland/deno",
"url": "https://github.com/denoland/deno/issues/17475",
"content": "Denoの2023 Q1のロードマップ。\n`deno.json`に直接import mapを埋め込めるように、`type=module`の`package.json`をサポート、`node:` prefixのサポート。\ndeno.land/x での semver指定のサポート、`deno bundle`をDeprecateにし、`deno pack`の追加など",
"tags": [
"deno",
"issue",
"proposal"
],
"relatedLinks": []
},
{
"date": "2023-01-23T13:00:13.959Z",
"title": "amandaghassaei/gpu-io: A GPU-accelerated computing library for physics simulations and other mathematical calculations",
"url": "https://github.com/amandaghassaei/gpu-io",
"content": "WebGLを使ったGPU処理を扱うライブラリ",
"tags": [
"WebGL",
"JavaScript",
"library"
],
"relatedLinks": []
},
{
"date": "2023-01-24T13:16:49.719Z",
"title": "Release v29.4.0 · facebook/jest",
"url": "https://github.com/facebook/jest/releases/tag/v29.4.0",
"content": "Jest v29.4.0リリース。\n`equal`のアルゴリズムをカスタマイズできる`expect.addEqualityTesters()`の追加、オブジェクトのプロパティをモックする`jest.replaceProperty()`の追加など",
"tags": [
"JavaScript",
"jest",
"ReleaseNote"
],
"relatedLinks": []
},
{
"date": "2023-01-24T13:21:37.775Z",
"title": "Release v1.11.0 · remix-run/remix",
"url": "https://github.com/remix-run/remix/releases/tag/remix%401.11.0",
"content": "Remix 1.11.0リリース。\n`defer`を使ってレスポンス待ちを減らせるように、`@remix-run/css-bundle`でのCSSファイルのロード、CSS Modules、Vanilla Extractのサポート。\nFlat Routesをopt-inで利用できるように",
"tags": [
"Remix",
"ReleaseNote"
],
"relatedLinks": [
{
"title": "Flat Routes · Discussion #4482 · remix-run/remix",
"url": "https://github.com/remix-run/remix/discussions/4482"
}
]
},
{
"date": "2023-01-26T10:40:45.256Z",
"title": "deca-org/deca-ui: DecaUI is production-ready themeable component library built with StitchesJS.",
"url": "https://github.com/deca-org/deca-ui",
"content": "ReactのUIコンポーネントフレームワーク",
"tags": [
"React",
"library"
],
"relatedLinks": []
},
{
"date": "2023-01-28T12:48:30.621Z",
"title": "cyclic-software/s3fs: Drop in replacement for the Node.js fs library backed by AWS S3",
"url": "https://github.com/cyclic-software/s3fs",
"content": "AWS S3をバックエンドにした`fs`互換のAPIを持ったライブラリ",
"tags": [
"aws",
"node.js",
"library"
],
"relatedLinks": []
},
{
"date": "2023-01-28T12:49:33.797Z",
"title": "Release v1.0.0 · mswjs/msw",
"url": "https://github.com/mswjs/msw/releases/tag/v1.0.0",
"content": "MSW 1.0リリース",
"tags": [
"ServiceWorker",
"library",
"ReleaseNote"
],
"relatedLinks": []
},
{
"date": "2023-01-28T13:21:04.624Z",
"title": "Release v0.17.5 · evanw/esbuild",
"url": "https://github.com/evanw/esbuild/releases/tag/v0.17.5",
"content": "esbuild v0.17.5リリース。\nTypeScript 5.0 betaの`const`parameterとenumのサポートなど",
"tags": [
"JavaScript",
"bundler",
"ReleaseNote"
],
"relatedLinks": []
},
{
"date": "2023-01-28T13:34:48.821Z",
"title": "jakebailey/hereby: A simple Node.js task runner",
"url": "https://github.com/jakebailey/hereby",
"content": "TypeScriptのリポジトリで利用しているタスクランナー。\nESMで書いたタスクの定義ファイルを元にタスクを実行できる。gulpの代わりに利用されている。",
"tags": [
"TypeScript",
"Tools"
],
"relatedLinks": []
},
{
"date": "2023-01-31T04:42:34.926Z",
"title": "Replace Create React App recommendation with Vite by t3dotgg · Pull Request #5487 · reactjs/reactjs.org",
"url": "https://github.com/reactjs/reactjs.org/pull/5487#issuecomment-1409720741",
"content": "Create React App(CRA)がメンテナンスされていないが、今後どうするかというIssue。\nCRAの存在理由とCRAノコマンドを維持して、内部的に他のフレームワークのランチャーとして機能させるProposal。",
"tags": [
"React",
"proposal",
"issue"
],
"relatedLinks": []
},
{
"date": "2023-02-01T10:47:18.557Z",
"title": "Release v2.0.0 · pmndrs/jotai",
"url": "https://github.com/pmndrs/jotai/releases/tag/v2.0.0",
"content": "Jotai 2.0.0リリース。\n`createStore` APIをexpose。\n破壊的な変更として、`get()`が自動でPromiseをresolveしないように、`initialValues`を`store`で渡すように変更など",
"tags": [
"JavaScript",
"library",
"ReleaseNote"
],
"relatedLinks": []
},
{
"date": "2023-02-03T13:16:07.948Z",
"title": "CodeIntelligenceTesting/jazzer.js: Coverage-guided, in-process fuzzing for the Node.js",
"url": "https://github.com/CodeIntelligenceTesting/jazzer.js",
"content": "libFuzzerベースのFuzzingライブラリ",
"tags": [
"JavaScript",
"testing",
"library"
],
"relatedLinks": []
},
{
"date": "2023-02-04T13:46:36.787Z",
"title": "tanekloc/tmsg: Type-safe i18n library for TypeScript apps. Based on and largely compatible with MessageFormat.",
"url": "https://github.com/tanekloc/tmsg",
"content": "messageformatの機能をサポートしたi18nライブラリ。\n型でテンプレートをパースすることで、テンプレートにない値を渡すとコンパイルエラーにできる",
"tags": [
"JavaScript",
"TypeScript",
"library",
"i18n"
],
"relatedLinks": []
},
{
"date": "2023-02-07T11:37:43.555Z",
"title": "deps: replace url parser with Ada by anonrig · Pull Request #46410 · nodejs/node",
"url": "https://github.com/nodejs/node/pull/46410",
"content": "Node.jsの`URL`をada-urlというC++で実装したものに切り替える。\n現在のURLの実装と比較してパフォーマンスが改善されている。",
"tags": [
"node.js",
"URL",
"issue",
"performance"
],
"relatedLinks": [
{
"title": "deps: replace url parser with Ada by anonrig · Pull Request #46410 · nodejs/node",
"url": "https://github.com/nodejs/node/pull/46410"
}
]
},
{
"date": "2023-02-07T14:53:10.905Z",
"title": "Release v9.4.0 · npm/cli",
"url": "https://github.com/npm/cli/releases/tag/v9.4.0",
"content": "npm v9.4.0リリース。\npnpmライクなインストール戦略である`--install-strategy=linked`をサポート。\nIsolated modeと言われていたRFCの実装。",
"tags": [
"npm",
"ReleaseNote"
],
"relatedLinks": [
{
"title": "rfcs/0042-isolated-mode.md at main · npm/rfcs · GitHub",
"url": "https://github.com/npm/rfcs/blob/main/accepted/0042-isolated-mode.md"
}
]
},
{
"date": "2023-02-09T14:07:46.600Z",
"title": "Release v3.2.0 · nuxt/nuxt",
"url": "https://github.com/nuxt/nuxt/releases/tag/v3.2.0",
"content": "Nuxt.js v3.2.0リリース。\nNuxt DevToolsの追加、`useFetch`でのリクエストに自動的にCookieが付くように。\nサーバのコードからclient-only componentを取り除く`treeshakeClientOnly`がデフォルトで`true`へと変更など。",
"tags": [
"Vue",
"ReleaseNote",
"library"
],
"relatedLinks": []
},
{
"date": "2023-02-13T07:16:21.848Z",
"title": "upgradejs/depngn: A CLI tool to find out if your dependencies support a given version of node.",
"url": "https://github.com/upgradejs/depngn",
"content": "インストールされている依存関係の`engines`フィールドを見て、指定したNode.jsバージョンが条件を満たすかを一覧できるツール",
"tags": [
"node.js",
"Tools"
],
"relatedLinks": []
},
{
"date": "2023-02-13T07:33:29.968Z",
"title": "Release v1 Because I finally got around to it · jquense/yup",
"url": "https://github.com/jquense/yup/releases/tag/v1.0.0",
"content": "スキーマを組み上げてバリデーションできるyup 1.0.0リリース。\n`tuple`の追加、bundleしたファイルを配布するように、`when` APIの変更、emailバリデーションをWHATWGの定義と同じものへ変更。\n`cast`に`ignore-optionality`オプションを追加、型処理のパフォーマンス改善と`Objectschema`クラスの追加など",
"tags": [
"TypeScript",
"library",
"ReleaseNote"
],
"relatedLinks": [
{
"title": "How do I migrate to v1 · Issue #1906 · jquense/yup",
"url": "https://github.com/jquense/yup/issues/1906"
}
]
},
{
"date": "2023-02-14T01:37:29.716Z",
"title": "Release DOMPurify 3.0.0 · cure53/DOMPurify",
"url": "https://github.com/cure53/DOMPurify/releases/tag/3.0.0",
"content": "DOMpurify 3.0.0リリース。\nIEのサポートを終了、`ALLOW_SELF_CLOSE_IN_ATTRP`オプションの追加など",
"tags": [
"DOM",
"security",
"library",
"ReleaseNote"
],
"relatedLinks": []
},
{
"date": "2023-02-14T04:36:39.391Z",
"title": "Release 3.28.0 - 2023.02.14 · zloirock/core-js",
"url": "https://github.com/zloirock/core-js/releases/tag/v3.28.0",
"content": "core-js v3.28.0リリース。\nStage4となったChange Array by copy proposalをStableに移動。\nStage3の`JSON.parse` source text access、`ArrayBuffer.prototype.transfer`、Explicit Resource Managementを追加。\nStage 2のSymbol Predicatesを実装、Stage 1の`Number.range`を`Iterator.range`に変更など",
"tags": [
"JavaScript",
"polyfill",
"library",
"ReleaseNote"
],
"relatedLinks": []
},
{
"date": "2023-02-15T04:20:03.751Z",
"title": "slashd-analytics/run: Run user-provided code in a Web Worker",
"url": "https://github.com/slashd-analytics/run",
"content": "Web Workerを一種のSandboxとして使い、任意のJSコードを実行するライブラリ",
"tags": [
"JavaScript",
"webworker",
"library"
],
"relatedLinks": []
},
{
"date": "2023-02-15T04:32:17.970Z",
"title": "core-js/2023-02-14-so-whats-next.md at master · zloirock/core-js · GitHub",
"url": "https://github.com/zloirock/core-js/blob/master/docs/2023-02-14-so-whats-next.md",
"content": "core-jsの歴史、財政的な問題、ロードマップについて。\nまた、多くのウェブサイトが複数のバージョンの`core-js`を同じページに読み込んでいるパッケージの依存関係の問題について",
"tags": [
"JavaScript",
"polyfill",
"article",
"OpenSource",
"opinion"
],
"relatedLinks": []
},
{
"date": "2023-02-16T23:27:58.617Z",
"title": "codesandbox/nodebox-runtime: The open source version of the nodebox repository, a Node.js runtime for the browser",
"url": "https://github.com/codesandbox/nodebox-runtime",
"content": "Node.jsのコードをブラウザ上で動かすためのNode.js互換のランタイムを実装したライブラリ。",
"tags": [
"node.js",
"browser",
"JavaScript",
"library"
],
"relatedLinks": [
{
"title": "Announcing Sandpack 2.0 and a Node.js runtime for any browser",
"url": "https://codesandbox.io/blog/announcing-sandpack-2"
}
]
},
{
"date": "2023-02-17T01:54:40.181Z",
"title": "Release v0.200.0 · facebook/flow",
"url": "https://github.com/facebook/flow/releases/tag/v0.200.0",
"content": "Flow v0.200.0リリース。\ngenerics-escapeの問題の改善、型チェックの厳密化、数値と日付の比較を許可しないように変更など。\n`flow autofix`に`missing-local-annot`を追加など",
"tags": [
"flowtype",
"ReleaseNote"
],
"relatedLinks": []
},
{
"date": "2023-02-19T10:22:01.087Z",
"title": "Release v9.5.0 · npm/cli",
"url": "https://github.com/npm/cli/releases/tag/v9.5.0",
"content": "npm v9.5.0リリース。\n`npm publish --provenance`のサポート。現時点ではGitHub Actionsのみの限定的なサポートで、OICDを使ったCIからのpublishをサポートするための仕組み。",
"tags": [
"npm",
"ReleaseNote"
],
"relatedLinks": [
{
"title": "Automated publishing of npm packages from CI/CD · Issue #625 · npm/statusboard",
"url": "https://github.com/npm/statusboard/issues/625"
},
{
"title": "RFC for linking packages to their source and build by feelepxyz · Pull Request #626 · npm/rfcs",
"url": "https://github.com/npm/rfcs/pull/626"
}
]
},
{
"date": "2023-02-19T11:56:29.357Z",
"title": "Release v3.0.0 · honojs/hono",
"url": "https://github.com/honojs/hono/releases/tag/v3.0.0",
"content": "Hono 3.0.0リリース。\n`req`を`Request`オブジェクトを拡張した`HonoRequest`オブジェクトに変更、StaticRouterの廃止、Validatorの変更。\nzodと組み合わせてrouterからレスポンスの型定義を作成できる`jsonT`とそれを利用するクライアントの`hono/client`の追加。\nwintercgのRuntime Keysの名前を返す`runtime()`の追加など",
"tags": [
"JavaScript",
"server",
"library",
"ReleaseNote"
],
"relatedLinks": []
},
{
"date": "2023-02-19T13:26:40.919Z",
"title": "Release v5.0.0-alpha.0 · chaijs/chai",
"url": "https://github.com/chaijs/chai/releases/tag/v5.0.0-alpha.0",
"content": "chai v5.0.0-alpha.0リリース。\nPure ESMのパッケージに変更。\nNode.js 16未満のサポート終了、IEのサポート終了など",
"tags": [
"JavaScript",
"testing",
"library",
"ReleaseNote"
],
"relatedLinks": []
},
{
"date": "2023-02-21T15:04:55.560Z",
"title": "Release v8.0.0-alpha.0 · pnpm/pnpm",
"url": "https://github.com/pnpm/pnpm/releases/tag/v8.0.0-alpha.0",
"content": "pnpm v8.0.0-alpha.0リリース。\npeerDependenciesを自動インストールする`auto-install-peers`を`true`へ変更、`publishConfig.linkDirectory`を`true`に変更。\n`resolution-mode`のデフォルト値を`lowest-direct`に変更、lockfileをv6に変更など",
"tags": [
"pnpm",
"ReleaseNote"
],
"relatedLinks": []
},
{
"date": "2023-02-23T11:13:36.754Z",
"title": "natemoo-re/clack: Effortlessly build beautiful command-line apps",
"url": "https://github.com/natemoo-re/clack",
"content": "コマンドラインの対話的なプロンプトUIを作成するNode.jsライブラリ",
"tags": [
"node.js",
"JavaScript",
"library"
],
"relatedLinks": []
},
{
"date": "2023-02-27T15:43:30.440Z",
"title": "Release v0.29.0 · vitest-dev/vitest",
"url": "https://github.com/vitest-dev/vitest/releases/tag/v0.29.0",
"content": "vitest v0.29.0リリース。\n試験的に依存関係をbundleして読み込むことでパフォーマンスを改善する`deps.experimentalOptimizer`オプションを追加。\nまた、`--no-threads`オプション使っている場合は、`--single-thread`や`deps.experimentalOptimizer`を代わりに使うことを推奨している。",
"tags": [
"vite",
"testing",
"ReleaseNote"
],
"relatedLinks": []
},
{
"date": "2023-02-28T10:42:51.076Z",
"title": "Release 7.2.0 · google/zx",
"url": "https://github.com/google/zx/releases/tag/7.2.0",
"content": "zx 7.2.0リリース。\n`retry()`と`spinner()`ヘルパーの追加など",
"tags": [
"JavaScript",
"library",
"ReleaseNote"
],
"relatedLinks": []
},
{
"date": "2023-03-06T12:24:50.915Z",
"title": "kaleidawave/ezno: A JavaScript compiler and TypeScript checker written in Rust with a focus on static analysis and runtime performance",
"url": "https://github.com/kaleidawave/ezno",
"content": "Rustで書かれたTypeScriptコンパイラ、型チェッカー。\t",
"tags": [
"TypeScript",
"Rust"
],
"relatedLinks": []
},
{
"date": "2023-03-06T23:37:44.376Z",
"title": "Release v111 · ije/esm.sh",
"url": "https://github.com/ije/esm.sh/releases/tag/v111",
"content": "esm.sh v111リリース。\n`deprecated`メッセージに対応、バージョン指定せずにリクエストした場合のTTLを10分に変更など\n",
"tags": [
"JavaScript",
"cdn",
"module"
],
"relatedLinks": []
},
{
"date": "2023-03-07T12:48:24.915Z",
"title": "Release v29.5.0 · facebook/jest",
"url": "https://github.com/facebook/jest/releases/tag/v29.5.0",
"content": "Jest v29.5.0リリース。\n`randomize`オプションでテストをランダムな順番で実行できるように、`workerThreads`オプションの追加、エラー出力のフォーマッターがError Causeのサポートなど\n",
"tags": [
"JavaScript",
"testing",
"ReleaseNote"
],
"relatedLinks": []
},
{
"date": "2023-03-07T14:41:46.338Z",
"title": "Release v2.1.0 · vercel/swr",
"url": "https://github.com/vercel/swr/releases/tag/v2.1.0",
"content": "SWR v2.1.0リリース。\nリアルタイムデータソースをSubscribeできる`useSWRSubscription`の追加、`useSWRInfinite`に`parallel`オプションを追加など",
"tags": [
"JavaScript",
"React",
"library",
"ReleaseNote"
],
"relatedLinks": []
},
{
"date": "2023-03-09T13:36:54.005Z",
"title": "Release v5.76.0 · webpack/webpack",
"url": "https://github.com/webpack/webpack/releases/tag/v5.76.0",
"content": "webpack v5.76.0リリース。\nパフォーマンスの改善など。",
"tags": [
"webpack",
"ReleaseNote"
],
"relatedLinks": []
},
{
"date": "2023-03-09T13:59:54.710Z",
"title": "open-draft/event-contract: Type-safe, implementation-agnostic event contract framework.",
"url": "https://github.com/open-draft/event-contract",
"content": "Type-Safeでイベントを実装するフレームワーク。\n`EventTarget`を使った`transport`が用意されていて、任意の仕組みでイベントを実装できる。\n`schema`によってzodを使ったRuntimeのType Checkもできるようになっている。",
"tags": [
"TypeScript",
"library"
],
"relatedLinks": []
},
{
"date": "2023-03-12T13:10:28.872Z",
"title": "Release v6.9.0 · remix-run/react-router",
"url": "https://github.com/remix-run/react-router/releases/tag/react-router%406.9.0",
"content": "React Router 6.9.0リリース。\n`lazy` propsをサポートし、コンポーネントを遅延ロードできるように",
"tags": [
"React",
"library",
"ReleaseNote"
],
"relatedLinks": []
},
{
"date": "2023-03-12T13:12:21.584Z",
"title": "Release v7.0.0-rc.0 · storybookjs/storybook",
"url": "https://github.com/storybookjs/storybook/releases/tag/v7.0.0-rc.0",
"content": "Storybook v7.0.0-rc.0リリース。",
"tags": [
"JavaScript",
"UI",
"Tools",
"ReleaseNote"
],
"relatedLinks": []
},
{
"date": "2023-03-13T22:49:37.619Z",
"title": "antonmedv/finder: CSS Selector Generator 🗺",
"url": "https://github.com/antonmedv/finder",
"content": "DOM要素からuniqueなCSSセレクターを作成するライブラリ",
"tags": [
"JavaScript",
"CSS",
"library"
],
"relatedLinks": []
},
{
"date": "2023-03-16T14:08:35.543Z",
"title": "vite/CHANGELOG.md at main · vitejs/vite",
"url": "https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md#420-2023-03-16",
"content": "Vite 4.2.0リリース。\nHTMLファイル内で`%ENV_NAME%`での環境変数の置換に対応、Source Mapsの改善、`exports`フィールドのSubpath importsに対応。\nTypeScript 5のサポートとesbuild 0.17へのアップデートなど",
"tags": [
"vite",
"ReleaseNote"
],
"relatedLinks": []
},
{
"date": "2023-03-18T11:32:50.563Z",
"title": "total-typescript/ts-reset: A 'CSS reset' for TypeScript, improving types for common JavaScript API's",
"url": "https://github.com/total-typescript/ts-reset",
"content": "TypeScriptのlibsの型定義を上書きする型定義ライブラリ。\n`JSON.parse`が`any`ではなく`unknown`を返すように変更したり、`.includes()`や`.has()`の型を厳密にするなどしている",
"tags": [
"TypeScript",
"library"
],
"relatedLinks": []
},
{
"date": "2023-03-19T14:02:08.645Z",
"title": "lagonapp/lagon: Deploy Serverless Functions at the Edge. Current status: Dev",
"url": "https://github.com/lagonapp/lagon",
"content": "V8とRustで書かれているJavaScriptランタイム。\n",
"tags": [
"V8",
"Rust",
"JavaScript",
"OpenSource"
],
"relatedLinks": []
},
{
"date": "2023-03-21T13:34:26.919Z",
"title": "gajus/turbowatch: Extremely fast file change detector and task orchestrator for Node.js.",
"url": "https://github.com/gajus/turbowatch",
"content": "ファイルの変更を監視して、プロセスを再起動するライブラリ、ツール。",
"tags": [
"node.js",
"library"
],
"relatedLinks": []
},
{
"date": "2023-03-22T03:19:42.063Z",
"title": "styled-components/xstyled: A utility-first CSS-in-JS framework built for React. 💅👩🎤⚡️",
"url": "https://github.com/styled-components/xstyled",
"content": "xstyledがstyled-componentsのorganizationに移管された",
"tags": [
"JavaScript",
"CSS",
"news"
],
"relatedLinks": [
{
"title": "Evan Jacobs on Twitter: "Excited to announce that xstyled is now part of the styled-components organization and we will begin to cross-pollinate improvements in the near future! Thank you so much @neoziro! https://t.co/uPk4sR9QsS" / Twitter",
"url": "https://twitter.com/probablyup/status/1632385154814558210"
}
]
},
{
"date": "2023-03-22T03:52:54.861Z",
"title": "anymaniax/orval: orval is able to generate client with appropriate type-signatures (TypeScript) from any valid OpenAPI v3 or Swagger v2 specification, either in yaml or json formats. 🍺",
"url": "https://github.com/anymaniax/orval",
"content": "OpenAPI SpecからAPIクライアントやモックサーバなどのコードを生成するツール。",
"tags": [
"OpenAPI",
"TypeScript",
"React",
"Tools",
"library"
],
"relatedLinks": [
{
"title": "OpenAPIからコードを自動生成!『Orval』のメリットと選定理由",
"url": "https://zenn.dev/hrbrain/articles/3ca5d37dd0b80e"
}
]
},
{
"date": "2023-03-25T05:40:12.494Z",
"title": "Release v8.0.0-rc.0 · pnpm/pnpm",
"url": "https://github.com/pnpm/pnpm/releases/tag/v8.0.0-rc.0",
"content": "pnpm v8.0.0-rc.0リリース。\nNode.js 14のサポート終了、デフォルト設定の変更、ロックファイルの形式の変更など",
"tags": [
"pnpm",
"ReleaseNote"
],
"relatedLinks": []
},
{
"date": "2023-03-25T12:21:37.042Z",
"title": "gvergnaud/hotscript: A library of composable functions for the type-level! Transform your TypeScript types in any way you want using functions you already know.",
"url": "https://github.com/gvergnaud/hotscript",
"content": "TypeScriptの型レベル高階関数のライブラリ。\n型でパターンマッチを書くの利用できるような型関数を提供しているライブラリ",
"tags": [
"TypeScript",
"library"
],
"relatedLinks": []
},
{
"date": "2023-03-26T11:31:24.125Z",
"title": "mamiksik/parrot-intellij: AI Commit Messages Autocomplete for InteliJ",
"url": "https://github.com/mamiksik/parrot-intellij",
"content": "コミットメッセージを自動生成するJetBrains/VSCode拡張。\nコミットメッセージを学習したモデルを利用する",
"tags": [
"JetBrains",
"plugin",
"LanguageModel"
],
"relatedLinks": []
},
{
"date": "2023-03-26T14:08:28.793Z",
"title": "sinclairnick/brail: 💌 Transactional email that feels different",
"url": "https://github.com/sinclairnick/brail",
"content": "Reactでメールのコンテンツを書けるメールツールキット。\nメール向けのUIコンポーネント、Linter、コンポーネントからHTMLメールを作成するジェネレータ、tRPCを使ったAPI、DevToolsなどが含まれる",
"tags": [
"React",
"mail",
"library",
"Tools"
],
"relatedLinks": []
},
{
"date": "2023-03-27T13:32:43.495Z",
"title": "mayank99/ecsstatic: the predefinite CSS-in-JS library for vite",
"url": "https://github.com/mayank99/ecsstatic",
"content": "CSS-in-JSライブラリ。\n`css`タグ関数を使ってCSSを書き、Viteを使ってコンパイルするようになっている。\nSassにも対応してる",
"tags": [
"CSS",
"vite"
],
"relatedLinks": []
},
{
"date": "2023-03-28T15:13:13.740Z",
"title": "Release v0.17.14 · evanw/esbuild",
"url": "https://github.com/evanw/esbuild/releases/tag/v0.17.14",
"content": "esbuild v0.17.14リリース。\nTypeScript 5の`const` parameterをサポート、CSS nestingのサポートなど",
"tags": [
"JavaScript",
"Tools",
"ReleaseNote"
],
"relatedLinks": []
},
{
"date": "2023-03-28T15:16:26.774Z",
"title": "Release v8.0.0 · pnpm/pnpm",
"url": "https://github.com/pnpm/pnpm/releases/tag/v8.0.0",
"content": "pnpm v8.0.0リリース。\nNode.js 14のサポート終了、デフォルト設定の変更をし`peerDependencies`デフォルトでインストールするように。\nLockfileの形式とバージョンをアップデートなど",
"tags": [
"pnpm",
"ReleaseNote"
],
"relatedLinks": []
},
{
"date": "2023-04-03T13:44:35.751Z",
"title": "Release v1.7.0 - U Can't Type This · solidjs/solid",
"url": "https://github.com/solidjs/solid/releases/tag/v1.7.0",
"content": "Solid v1.7.0リリース。\nTypeScriptのより厳密な型で書けるように改善、`onError`を置き換える`catchError`の追加など",
"tags": [
"JavaScript",
"React",
"ReleaseNote"
],
"relatedLinks": []
},
{
"date": "2023-04-03T13:49:17.542Z",
"title": "lxsmnsyc/seroval: Stringify JS values",
"url": "https://github.com/lxsmnsyc/seroval",
"content": "JavaScriptのオブジェクトをJavaScriptのコードやJSONのシリアライズ/デシリアライズするライブラリ。\nシリアライズするかを機能ごとの無効化するオプションを持っている",
"tags": [
"JavaScript",
"library"
],
"relatedLinks": []
},
{
"date": "2023-04-03T15:44:00.548Z",
"title": "Release ES2023 Candidate April 2023 · tc39/ecma262",
"url": "https://github.com/tc39/ecma262/releases/tag/es2023-candidate-2023-04",
"content": "ECMAScript 2023 Candidateリリース。\n6月のEcma GAで承認されたら正式にリリースされる。",
"tags": [
"ECMAScript",
"ReleaseNote",
"spec"
],
"relatedLinks": []
},
{
"date": "2023-04-04T12:58:51.052Z",
"title": "wantedly/react-declassify: say goodbye to class components",
"url": "https://github.com/wantedly/react-declassify",
"content": "ReactのクラスコンポーネントをHooksを使うように変換するツール",
"tags": [
"React",
"JavaScript",
"Tools"
],
"relatedLinks": []
},
{
"date": "2023-04-05T15:43:45.366Z",
"title": "unjs/magicast: 🧀 Programmatically modify JavaScript and TypeScript source codes with a simplified, elegant and familiar syntax powered by recast and babel.",
"url": "https://github.com/unjs/magicast",
"content": "JavaScriptのAST操作を簡単に行うためのライブラリ。\n",
"tags": [
"JavaScript",
"AST",
"library"
],
"relatedLinks": []
},
{
"date": "2023-04-08T01:43:03.245Z",
"title": "Release @sveltejs/[email protected] · sveltejs/kit",
"url": "https://github.com/sveltejs/kit/releases/tag/%40sveltejs%2Fkit%401.15.2",
"content": "Svelte Kit 1.15.2リリース。\nCSRFに関する脆弱性が修正されているセキュリティリリース",
"tags": [
"Svelte",
"ReleaseNote"
],
"relatedLinks": [
{
"title": "Release @sveltejs/[email protected] · sveltejs/kit",
"url": "https://github.com/sveltejs/kit/releases/tag/%40sveltejs%2Fkit%401.15.1"
}
]
},
{
"date": "2023-04-09T14:52:46.812Z",
"title": "Release v0.30.0 · vitest-dev/vitest",
"url": "https://github.com/vitest-dev/vitest/releases/tag/v0.30.0",
"content": "vitest v0.30.0リリース。\nmonorepoをサポートするworkspace機能の追加、snapshotのロジックを`@vitest/snapshot`パッケージに移動など",
"tags": [
"vite",
"testing",
"library",
"ReleaseNote"
],