Skip to content

mochahaulier/vitereactfrontendtest

Repository files navigation

ViteReactFrontendTest

A slightly cleaned-up version of ReactPostresqlTest, using Vite & Typescript now. Added SWR for fetching data, making it cleaner and more straightforward.

A quick test of developing a React CRUD frontend using Axios by implementing a Todo List.

The app connects to Spring boot backend REST Api deployed on Render, using a PostgreSQL DB.

Using React, Vite, Typescript, HTML, and (S)CSS.

Important

The instance running the backend will spin down with inactivity, which can delay initial requests by 50 seconds or more.

Screenshots

ViteReactFrontendTest GUI gif

React + TypeScript + Vite

This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.

Currently, two official plugins are available:

Expanding the ESLint configuration

If you are developing a production application, we recommend updating the configuration to enable type aware lint rules:

  • Configure the top-level parserOptions property like this:
export default {
  // other rules...
  parserOptions: {
    ecmaVersion: 'latest',
    sourceType: 'module',
    project: ['./tsconfig.json', './tsconfig.node.json'],
    tsconfigRootDir: __dirname,
  },
}
  • Replace plugin:@typescript-eslint/recommended to plugin:@typescript-eslint/recommended-type-checked or plugin:@typescript-eslint/strict-type-checked
  • Optionally add plugin:@typescript-eslint/stylistic-type-checked
  • Install eslint-plugin-react and add plugin:react/recommended & plugin:react/jsx-runtime to the extends list