guychienll / ggr

Home Page:https://ggr-beige.vercel.app

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

README

Table of Contents

Demo Links

Architecture

flowchart TD

    subgraph script
        ts
        tsx
    end

    subgraph stylesheet
        scss
    end

    subgraph webpack
        script --> babel-loader --> .dist/bundle.js
        stylesheet --> sass-loader --> postcss-loader --> css-loader --> mini-extract-css-loader --> .dist/main.css
    end

    .dist/bundle.js --> html
    .dist/main.css --> html

    subgraph html
        script-tag
        link-tag
    end

    html --> browser --> client
Loading

Prerequisites

Dependency Version
node v20.10.0 or higher
npm v9.6.7 or higher

Getting Started

Clone the repository

git clone git@github.com:guychienll/ggr.git

Install dependencies

npm install

Run the application

Development watch mode would be run on https://localhost:3000

npm run dev

Build the application

development build
npm run build:dev
production build
npm run build:prod

Storybook

npm run storybook

About

https://ggr-beige.vercel.app


Languages

Language:TypeScript 68.6%Language:JavaScript 28.6%Language:HTML 1.3%Language:SCSS 1.1%Language:Shell 0.4%