Skip to content

Latest commit

 

History

History
41 lines (25 loc) · 782 Bytes

File metadata and controls

41 lines (25 loc) · 782 Bytes

Studentogram Frontend

Example project to the lecture about React, Redux.

It implemets some sample of the chat application with chats. For instant messaging I use socket.io.

This repository contains frontend only. If you want to find server side or lecture go to Links.

Versions

On the branch master: pure React with JSX.

On the branch redux: React + Redux.

Build and development

  1. Install project's dependencies:
npm i
  1. To run application for development use:
npm run start
  1. To build application use:
npm run build

Links

Slides

Backend repo