https://github.com/samouss/micro-messages
Micro messages App built with React
https://github.com/samouss/micro-messages
css-modules flow react redux
Last synced: 11 months ago
JSON representation
Micro messages App built with React
- Host: GitHub
- URL: https://github.com/samouss/micro-messages
- Owner: samouss
- Created: 2017-06-08T13:16:27.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-06-08T14:02:48.000Z (over 8 years ago)
- Last Synced: 2025-01-04T21:41:56.521Z (about 1 year ago)
- Topics: css-modules, flow, react, redux
- Language: JavaScript
- Homepage: https://micro-messages-app.herokuapp.com
- Size: 115 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Micro Messages
[](https://travis-ci.org/samouss/micro-messages) [](https://david-dm.org/samouss/micro-messages) [](https://david-dm.org/samouss/micro-messages?type=dev)
Micro Messages is built with React, Redux, Flow, Webpack 2, Babel, ESLint, CSS Modules, Jest, Enzyme.
[Live exemple: micro-messages-app.herokuapp.com](https://micro-messages-app.herokuapp.com) (it's a free dyno so be patient for the boot time 🙂)
## Installation
Clone the repository and then run the following command:
```
npm install
```
## Run the application
For run the development application and launch a server in watch mode on `localhost:8080`:
```
npm start:dev
```
For run the production application on `localhost:3000`:
```
npn start
```
## Build the application
For build the application for production:
```
npm run build
```
## Run the test for the application
Your tests will be executed in single run mode:
```
npm test
```
For run in watch mode:
```
npm test:watch
```