https://github.com/theodesp/todo-app-mobx
A simple example of a Todo App using React + Mobx
https://github.com/theodesp/todo-app-mobx
css3 enzyme example-project jest mobx-react react todoapp webpack3
Last synced: about 1 year ago
JSON representation
A simple example of a Todo App using React + Mobx
- Host: GitHub
- URL: https://github.com/theodesp/todo-app-mobx
- Owner: theodesp
- License: mit
- Created: 2018-02-27T23:39:17.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2020-07-27T09:19:34.000Z (almost 6 years ago)
- Last Synced: 2024-10-19T09:18:56.549Z (over 1 year ago)
- Topics: css3, enzyme, example-project, jest, mobx-react, react, todoapp, webpack3
- Language: JavaScript
- Size: 183 KB
- Stars: 4
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# TODO App
This is a test implementation of a simple Todo List App.
The technologies used for this application are:
* React as UI library
* Mobx as state management library
* Webpack for module bundling
* Jest + Enzyme for Unit Testing
## How to run the app
Just install with the latest Node.js and navigate to http://localhost:8080.
```bash
$ npm install
```
## How to run the test cases
After you have installed the packages just run:
```bash
$ npm run test
```
## Production build
To generate an optimized production build just run the following command:
```bash
$ npm run build
```
This will generate optimised and minified code in the 'dist' folder.
Just serve with your favourite web server.