Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/stephnr/lite-react-tsx
Super lightweight React app built using typescript + JSX
https://github.com/stephnr/lite-react-tsx
Last synced: 28 days ago
JSON representation
Super lightweight React app built using typescript + JSX
- Host: GitHub
- URL: https://github.com/stephnr/lite-react-tsx
- Owner: stephnr
- License: gpl-3.0
- Created: 2016-10-03T16:27:23.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-01-05T16:19:21.000Z (about 8 years ago)
- Last Synced: 2024-10-25T08:35:30.144Z (3 months ago)
- Language: JavaScript
- Size: 23.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Lite React TSX Web App
#### Getting Started for development
1. Install Modules
```sh
npm install
```2. Run the app in development mode
```sh
npm run develop
```3. **OR** Run the app in production mode
```sh
npm start
```#### Debugging React using VSCode
1. To debug using Chrome Debugging in VS Code, you will need to execute the following commands in seperate terminal instances:
> npm run develop
> npm run launch:chrome:debug
*each one of these will trigger a watching process*
2. Then step into the debugging suite for VS Code and execute the debug task named `Attach Chrome Debugging`.
3. Lastly, navigate to [Localhost at port 8000](http://localhost:8000) to begin debugging.
*If your lite-server is set to a different port, specify that port above instead*