Welcome! This repository serves as the home for my portfolio site, taichi221228, a living document of my journey and growth in the tech world. Here, I showcase my technical articles, projects, and the evolving story of my professional development. Explore my world of coding, learning, and creative solutions!
This repository is still a work in progress. Some sections may be incomplete as I continue to develop and update the content. Thank you for your understanding!
This project is using Qwik with QwikCity. QwikCity is an extra set of tools on top of Qwik that enhances the ease of building a full site, including directory-based routing, layouts, and more.
Inside your project, you’ll see the following directory structure:
├── public/
│ └── ...
└── src/
├── components/
│ └── ...
└── routes/
└── ...
-
src/routes
: Provides the directory-based routing, which can include a hierarchy oflayout.tsx
layout files, and anindex.tsx
file as the page. Additionally,index.ts
files are endpoints. Please see the routing docs for more info. -
src/components
: Recommended directory for components. -
public
: Any static assets, like images, can be placed in the public directory. Please see the Vite public directory for more info.
Name | Category | |
---|---|---|
Bun | Runtime | ✅ |
Qwik | UI Library | ✅ |
React | UI Library | 📋 |
QwikCity | Meta Framework | ✅ |
ElysiaJS | Middleware | 📋 |
Modular Forms | Form Management | ✅ |
Valibot | Validation | 🚧 |
Orama | Answer Engine | 📋 |
Resend | Email Service | ✅ |
Markdown | Content Format | 📋 |
Zenn/Qiita/Dev.to | Content Platform | 📋 |
Panda CSS | CSS Methodology | 🚧 |
Remix Icon | Icon Set | ✅ |
Fontsource | Font Set | ✅ |
Shiki | Syntax Highlighting | ✅ |
Twoslash | Code Documentation | 📋 |
Vite | Build Tool | ✅ |
esbuild | Build Tool | ✅ |
Rollup | Build Tool | ✅ |
Renovate | Dependency Management | ✅ |
TypeScript | Type Cheking | ✅ |
ESLint | Code Linting | ✅ |
Stylelint | Style Linting | ✅ |
textlint | Text Linting | ✅ |
markdownlint | Markdown Linting | 📋 |
commitlint | Commit Message Linting | ✅ |
Biome | Code Linting/Formatting | ✅ |
Prettier | Code Formatting | ✅ |
EditorConfig | Code Style | ✅ |
Husky | Git Hooks | ✅ |
CR.GPT | Automated Code Review | 🚧 |
scaffdog | Code Scaffolding | ✅ |
Vitest | Unit Testing | 📋 |
Storybook | Component Testing | 📋 |
Playwright | End-to-End Testing | 📋 |
BrowserStack | Cross-Browser Testing | 📋 |
Sentry | Error Monitoring | 📋 |
Partytown | Performance Optimization | 📋 |
Speedlify | Performance Monitoring | 📋 |
GitGuardian | Security Monitoring | ✅ |
Cloudflare | CDN/Hosting | 📋 |
Nx | Monorepo Management | 📋 |
CI/CD | 🤔 | |
Figma | Design Tool | ✅ |
Development mode uses Vite’s development server. The dev
command will server-side render (SSR) the output during development.
bun start # or `npm start`
Note: during dev mode, Vite may request a significant number of
.js
files. This does not represent a Qwik production build.
The preview command will create a production build of the client modules, a production build of src/entry.preview.tsx
, and run a local server. The preview server is only for convenience to preview a production build locally and should not be used as a production server.
bun preview # or `npm run preview`
The production build will generate client and server modules by running both client and server build commands. The build command will use Typescript to run a type check on the source code.
bun run build # or `npm run build`
Extraordinary thanks to the Figma community for the design inspiration. This portfolio site was crafted using the design concept from Portfolio for Developers Concept V.2. I am grateful for the opportunity to utilize such a creative and well-thought-out design framework, which has greatly enhanced the presentation of my work.