I would like to create a simple React app with typescript, but the official documentation about creating a new project guides me towards other 3rd party frameworks like Next.js and Remix. How to start a project without those?
Question posted in Javascript
A very good W3school tutorial can be found here.
A very good W3school tutorial can be found here.
2
Answers
ReactJS itself technically is a library, meaning by using
create-react-app
means ReactJS app without frameworks.Also, the create-react-app has template with integrated Typescript, which can be achieved by running
npx create-react-app my-app --template typescript
https://create-react-app.dev/docs/getting-started#creating-a-typescript-app
You could use Create React App or Vite (which is faster).