stream-saga/README.md

32 lines
559 B
Markdown
Raw Normal View History

2019-06-25 11:42:16 -04:00
# Twitter stream viewer
2019-06-19 12:08:06 -04:00
2019-06-25 11:42:16 -04:00
A React + NodeJS application that fetches tweets from Twitter stream API.
2019-06-19 12:08:06 -04:00
2019-08-15 12:02:19 -04:00
State managed with redux and Redux-Saga.
2019-06-19 12:08:06 -04:00
2019-06-25 11:42:16 -04:00
## Requirements
2019-06-19 12:08:06 -04:00
2019-06-25 11:42:16 -04:00
Node JS and npm.
2019-06-19 12:08:06 -04:00
2019-06-25 11:42:16 -04:00
## Installation
2019-06-19 12:08:06 -04:00
2019-06-25 11:42:16 -04:00
Clone this repository
2019-06-19 12:08:06 -04:00
2019-06-25 11:42:16 -04:00
git clone https://github.com/Rodrigoplp/stream-saga.git
2019-06-19 12:08:06 -04:00
2019-06-25 11:42:16 -04:00
Install dependencies
2019-06-19 12:08:06 -04:00
2019-06-25 11:42:16 -04:00
npm install
2019-06-19 12:08:06 -04:00
2019-06-25 11:42:16 -04:00
Start server
2019-06-19 12:08:06 -04:00
2019-06-25 11:42:16 -04:00
nodemon server
2019-06-19 12:08:06 -04:00
2019-06-25 11:42:16 -04:00
Open a second terminal session and start front-end
2019-06-19 12:08:06 -04:00
2019-06-25 11:42:16 -04:00
npm start
2019-06-19 12:08:06 -04:00
2019-06-25 11:42:16 -04:00
Open a browser and access `http://localhost:3000`.
2019-06-19 12:08:06 -04:00
2019-06-25 11:42:16 -04:00
This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).