A web application built with React, Express, and TypeScript.
This project is a fullstack web application with:
- React frontend with Tailwind CSS
- Express backend
- TypeScript for type safety
- Node.js (Latest LTS version recommended)
- npm
- Clone the repository:
git clone <repository-url>
cd replit-linear-interpolation
- Install dependencies:
npm install
- Start the development server:
npm run dev
npm run build
npm start
This project includes Docker configuration for easy deployment.
docker build -t linear-interpolation .
docker run -p 5000:5000 linear-interpolation
The application will be available at http://localhost:5000.
client/: React frontend applicationserver/: Express backend servershared/: Shared code between frontend and backenddist/: Built application (generated)
npm run dev: Start development servernpm run build: Build for productionnpm start: Run production servernpm run check: Type check the codebase
MIT