File tree Expand file tree Collapse file tree 5 files changed +13
-32
lines changed
Expand file tree Collapse file tree 5 files changed +13
-32
lines changed Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -26,39 +26,34 @@ const filterByWindowWidth = (array: (number | string)[]) => {
2626const benchmarks : { category : string ; data : number ; color : string } [ ] = [
2727 {
2828 category : 'frourio' ,
29- data : 57152.8 ,
29+ data : 47219.2 ,
3030 color : '#08c6d6' ,
3131 } ,
3232 {
3333 category : 'fastify' ,
34- data : 56084.8 ,
35- color : '#999' ,
36- } ,
37- {
38- category : 'nest-fastify' ,
39- data : 53035.2 ,
34+ data : 47077.6 ,
4035 color : '#999' ,
4136 } ,
4237 {
4338 category : 'frourio-express' ,
44- data : 13741.0 ,
45- color : '#999 ' ,
39+ data : 9934.6 ,
40+ color : '#08c6d6 ' ,
4641 } ,
4742 {
4843 category : 'express' ,
49- data : 13602.0 ,
44+ data : 10402.6 ,
5045 color : '#999' ,
5146 } ,
5247 {
53- category : 'nest ' ,
54- data : 12212.2 ,
48+ category : 'polka ' ,
49+ data : 48052.0 ,
5550 color : '#999' ,
5651 } ,
5752] . sort ( ( a , b ) => b . data - a . data ) ;
5853
5954const chartSeries = [
6055 {
61- name : '2022-10-01 ' ,
56+ name : '2025-02-07 ' ,
6257 data : filterByWindowWidth ( benchmarks . map ( ( val ) => val . data ) ) ,
6358 } ,
6459] ;
Original file line number Diff line number Diff line change 11import React , { ComponentType , SVGProps } from 'react' ;
22import styles from '../pages/styles.module.css' ;
3-
43import NextLogo from '../assets/logos/next.svg' ;
5- import NuxtLogo from '../assets/logos/nuxt.svg' ;
64import FastifyLogo from '../assets/logos/fastify.svg' ;
75import ExpressLogo from '../assets/logos/express.svg' ;
86import PrismaLogo from '../assets/logos/prisma.svg' ;
9- import TypeormLogo from '../assets/logos/typeorm.svg' ;
107import MysqlLogo from '../assets/logos/mysql.svg' ;
118import PostgresqlLogo from '../assets/logos/postgresql.svg' ;
129import JestLogo from '../assets/logos/jest.svg' ;
@@ -16,16 +13,16 @@ import NetlifyLogo from '../assets/logos/netlify.svg';
1613
1714const setupSteps : { text : string ; icons : ComponentType < SVGProps < SVGSVGElement > > [ ] } [ ] = [
1815 {
19- text : 'フロントエンドフレームワークを選択 ' ,
20- icons : [ NextLogo , NuxtLogo ] ,
16+ text : 'フロントエンドフレームワーク ' ,
17+ icons : [ NextLogo ] ,
2118 } ,
2219 {
2320 text : 'バックエンドフレームワークを選択' ,
2421 icons : [ FastifyLogo , ExpressLogo ] ,
2522 } ,
2623 {
27- text : 'ORM を選択 ' ,
28- icons : [ PrismaLogo , TypeormLogo ] ,
24+ text : 'O/R Mapper ' ,
25+ icons : [ PrismaLogo ] ,
2926 } ,
3027 {
3128 text : 'データベースを選択' ,
Original file line number Diff line number Diff line change @@ -114,7 +114,7 @@ function Home() {
114114
115115 < div className = { clsx ( 'text--center' , styles . feature ) } >
116116 < div className = "container" >
117- < h2 > TypeScript 製で最速のフレームワーク </ h2 >
117+ < h2 > TypeScript フレームワークのベンチマーク </ h2 >
118118 < BenchmarkChart />
119119 < div className = { clsx ( 'text--center' , styles . feature ) } >
120120 < Link
You can’t perform that action at this time.
0 commit comments