Skip to content

Latest commit

 

History

History
48 lines (34 loc) · 1016 Bytes

File metadata and controls

48 lines (34 loc) · 1016 Bytes

Fullstack Boilerplate Express/Typescript/React

A backbone for your coding challenge.

Contents

  • Backend service - an Express service with a /ping endpoint. Extend with your code.
  • Frontend app - a React app. Extend with your code.
  • E2E test suites - a backend and a frontend Cypress test suites. Extend with your tests.

Tech Stack

  • React
  • Typescript
  • Vite
  • Vitest
  • ExpressJS
  • Cypress
  • GitHub Actions

Getting started

  1. Build your app.
npm install
npm run build # both Express backend and React frontend
npm run build:backend # only Express backend
npm run build:frontend # only React frontend
  1. Start your app.
npm install
npm run start # both Express backend and React frontend
npm run start:backend # only Express backend
npm run start:frontend # only React frontend
  1. Run the Cypress tests.
npm run test # run project tests under `cypress/e2e`

---

Authored by [Alva Labs](https://www.alvalabs.io/).