An open API service indexing awesome lists of open source software.

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

Awesome Lists containing this project

README

          

# Micro Messages

[![Build Status](https://travis-ci.org/samouss/micro-messages.svg?branch=master)](https://travis-ci.org/samouss/micro-messages) [![dependencies Status](https://david-dm.org/samouss/micro-messages/status.svg)](https://david-dm.org/samouss/micro-messages) [![devDependencies Status](https://david-dm.org/samouss/micro-messages/dev-status.svg)](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
```