https://github.com/dimpu/react-quickstart
React quick start with TypeScript and Browserify
https://github.com/dimpu/react-quickstart
Last synced: 9 months ago
JSON representation
React quick start with TypeScript and Browserify
- Host: GitHub
- URL: https://github.com/dimpu/react-quickstart
- Owner: dimpu
- License: mit
- Created: 2016-08-24T19:14:41.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-08-24T20:39:58.000Z (over 9 years ago)
- Last Synced: 2025-04-11T21:17:58.283Z (9 months ago)
- Language: TypeScript
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# React Quickstart
React quick start with TypeScript and Browserify
A simple quick start project to create react components using TypeScript.
We are using Browserify as a build tool to convert our typescript and tsx code into ES5 javascript.
# How to use?
```shell
git clone https://github.com/dimpu/react-quickstart.git ReactOne
cd ReactOne
npm i
```
## to run
```shell
npm start
```
Hot reload enabled using `budo` server.
## to build
```shell
npm run build
```
This command will create two file in your dist folder
1) vendor.js
2) app.js
## Thank your
That's is we are done. Let me know if you found any bug.
Cheers!!!