Create React apps using TypeScript 2, WebPack 2, StateX, Mocha, Chai, with pre-configured build scripts for dev and production. React TS works on macOS, Windows, and Linux. If something doesn’t work please file an issue.
This project is configured with
- TypeScript
- WebPack
- Hot Module Replacement with app state preservation
- StateX - (an implementation of flux)
- Mocha & Chai for testing
Usage: react-ts [options] [command]
Commands:
create [options] <name> Create react application with TypeScript and WebPack
Options:
-s, --skip-git Skip git initialization
-i, --install Install node modules
serve [port] Serve the project
build [environment] Build the project
Options:
-h, --help output usage information
-V, --version output the version number
Install it once globally:
npm install -g react-ts
You’ll need to have Node >= 4 on your machine.
We strongly recommend to use Node >= 6 and npm >= 3 for faster installation speed and better disk usage. You can use nvm to easily switch Node versions between different projects.
To create a new app, run:
react-ts create todo
cd todo
It will create a directory called todo
inside the current folder.
Inside that directory, it will generate the initial project structure and install the transitive dependencies:
todo
├── LICENSE
├── README.md
├── docs/
├── package.json
├── src
│ ├── action
│ │ ├── index.ts
│ │ └── todo-action.ts
│ ├── app
│ │ ├── app.spec.tsx
│ │ ├── app.tsx
│ │ ├── index.ts
│ │ ├── todo-footer
│ │ │ ├── index.ts
│ │ │ ├── todo-filter.tsx
│ │ │ └── todo-footer.tsx
│ │ ├── todo-header
│ │ │ ├── index.ts
│ │ │ └── todo-header.tsx
│ │ └── todo-list
│ │ ├── index.ts
│ │ ├── todo-list.tsx
│ │ └── todo-item.tsx
│ ├── assets
│ │ ├── favicon.ico
│ │ └── logo.svg
│ ├── index.html
│ ├── index.tsx
│ ├── service
│ │ ├── index.ts
│ │ └── todo-service.ts
│ ├── state
│ │ ├── app-state.ts
│ │ ├── initial-state.ts
│ │ ├── index.ts
│ │ └── todo.ts
│ ├── store
│ │ ├── index.ts
│ │ └── todo-store.ts
│ └── style
│ └── app.scss
├── tsconfig.json
└── tslint.json
No configuration or complicated folder structures, just the files you need to build your app. Once the installation is done, you can run some commands inside the project folder:
Runs the app in development mode. Open http://localhost:8080 to view it in the browser.
The page will reload if you make edits and will preserve the state. You will see the build errors and lint warnings in the console.
Runs the tests once. Project is compiled before running test cases, hence any error will cause the script to terminate even before running test cases.
Runs the tests in watch mode. Restarts the tests, if either source code or the test file itself is changed.
Builds the app for production to the build folder (dist
). It correctly bundles React in production mode and optimizes the build for the best performance.
The build is minified. Your app is ready to be deployed!
I'd love to have your helping hand on this project. Feel free to contact me or checkout my GitHub page.
Rinto Jose (rintoj)
Hope this module is helpful to you. Please make sure to checkout my other projects and articles. Enjoy coding!
Follow me: GitHub | Facebook | Twitter | Google+ | Youtube
The MIT License (MIT)
Copyright (c) 2017 Rinto Jose (rintoj)
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.