Simple development environments for simple JavaScript/TypeScript projects, designed for technical interviews.
Choose one of the followings that fits your role.
Simple front-end baseline created by create-react-app.
cd fe
npm install
npm start
open http://localhost:3000/
Simple front-end baseline created by create-react-app --template typescript
cd fe-ts
npm install
npm start
open http://localhost:3000/
A React environment in static files without needing a compiler process.
Use dev.html for development.
An integrated environment for both client-side and server-side programming with TypeScript support
cd fullstack
npm install
npm start
open http://localhost:3000/