A backbone for your coding challenge.
- 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.
- React
- Typescript
- Vite
- Vitest
- ExpressJS
- Cypress
- GitHub Actions
- 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
- 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
- Run the Cypress tests.
npm run test # run project tests under `cypress/e2e`
---
Authored by [Alva Labs](https://www.alvalabs.io/).