Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dimafeng/typescript-react-mobx-template
Example of a TypeScript application that uses: react.js, react-router, mobx, rx.js, jest, webpack 1, tslint
https://github.com/dimafeng/typescript-react-mobx-template
jest mobx mobx-react react rxjs tslint typescript webpack
Last synced: 3 months ago
JSON representation
Example of a TypeScript application that uses: react.js, react-router, mobx, rx.js, jest, webpack 1, tslint
- Host: GitHub
- URL: https://github.com/dimafeng/typescript-react-mobx-template
- Owner: dimafeng
- Created: 2017-03-31T01:07:22.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-04-21T03:18:16.000Z (almost 8 years ago)
- Last Synced: 2024-06-24T09:33:17.253Z (7 months ago)
- Topics: jest, mobx, mobx-react, react, rxjs, tslint, typescript, webpack
- Language: TypeScript
- Homepage:
- Size: 159 KB
- Stars: 39
- Watchers: 2
- Forks: 6
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Ready-to-use template for a TypeScript application.
![typescript-template](typescript-template.gif)
This is an example of TypeScript application that uses:
* TypeScript
* React.js
* React-router
* MobX
* Rx.js
* Jest
* webpack 1
* tslintIt can be used as a template for a new application.
## Requirements
* node.js >=7
## How to start
* Run fake backend
```$bash
cd ./backend-mock
npm install
npm run serve
```* Run the app
```$bash
cd ./app
npm install
npm run dev
```
Open http://localhost:8888 in a web browser.## How to test & lint
```$bash
cd ./app
npm run test
npm run lint
```## How to build
TODO
## License
The MIT License (MIT)
Copyright (c) 2017 Dmitry Fedosov
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.