https://github.com/geowarin/ts-react
Typescript, react and webpack hot reload
https://github.com/geowarin/ts-react
Last synced: 2 months ago
JSON representation
Typescript, react and webpack hot reload
- Host: GitHub
- URL: https://github.com/geowarin/ts-react
- Owner: geowarin
- Created: 2015-07-11T16:18:40.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-07-11T17:51:01.000Z (almost 10 years ago)
- Last Synced: 2024-12-25T14:07:49.913Z (4 months ago)
- Language: JavaScript
- Homepage:
- Size: 137 KB
- Stars: 2
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ts-react
Typescript, react and webpack hot reload## Launching the application
npm install
npm startApplication will launch on http://localhost:3000
## Editing
Use [atom](https://atom.io/) with the awesome [Typescript plugin](https://atom.io/packages/atom-typescript).
Your changes will be automatically picked up by [React Hot Loader](https://github.com/gaearon/react-hot-loader) and
will be displayed without reloading.## Why Typescript?
Typescript [recently added](http://www.jbrantly.com/typescript-and-jsx) support for jsx.
It will be part of typescript 1.6. In the meantime, the example is using a [nightly build](https://github.com/TypeStrong/ntypescript) of typescript.
It is a very interesting language.
It gives you autocompletion, all sorts of refactorings and compile time errors (for react components props for examples!).Give it a shot, it might change the way you develop :)
## Licence
MIT