Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/0xvashishth/projecthubclient
https://github.com/0xvashishth/projecthubclient
Last synced: about 5 hours ago
JSON representation
- Host: GitHub
- URL: https://github.com/0xvashishth/projecthubclient
- Owner: 0xvashishth
- Created: 2023-03-01T04:03:44.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-03-08T14:15:34.000Z (over 1 year ago)
- Last Synced: 2024-05-02T04:49:11.031Z (7 months ago)
- Language: JavaScript
- Size: 150 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Running React on Repl.it
[React](https://reactjs.org/) is a popular JavaScript library for building user interfaces.
[Vite](https://vitejs.dev/) is a blazing fast frontend build tool that includes features like Hot Module Reloading (HMR), optimized builds, and TypeScript support out of the box.
Using the two in conjunction is one of the fastest ways to build a web app.
### Getting Started
- Hit run
- Edit [App.jsx](#src/App.jsx) and watch it live update!By default, Replit runs the `dev` script, but you can configure it by changing the `run` field in the [configuration file](#.replit). Here are the vite docs for [serving production websites](https://vitejs.dev/guide/build.html)
### Typescript
Just rename any file from `.jsx` to `.tsx`. You can also try our [TypeScript Template](https://replit.com/@replit/React-TypeScript)