Project WebApp

Written by Kalle Ott for opencampus

Declarative animations with react-pose

12 June, 2018

In general animating the view is hard, because suddenly the state is dependent on time. Views can exist longer than they existed before…

React on the server and the JAMstack

05 June, 2018

If you dig a bit deeper into the react-dom package you will find a sub folder called server and there is a function renderToString . As the…

Get firebase to sync your data

29 May, 2018

Till now the chat app is quite boring, because you can only talk to yourself. But for synchronization of the message history with other…

Taking control over state-changes

22 May, 2018

As already said in last session, besides handling the state itself it is very important to take care of the state changes. An extremely…

State management in a react app

15 May, 2018

Handling the state of an application is one of the core features of most frameworks and even react ha a build in state API. Every class…

How to style react

08 May, 2018

The classic approach to styling in the browser is creating a css file and provide it with a tag. The tutorial from last session…

From code to UI - Introduction to React.JS

24 April, 2018

to use react we need two packages from npm, react itself and react-dom . React takes care of managing a virtual dom representation and is…

Functional programming with JavaScript

17 April, 2018

as the name “functional programming” suggests, this lesson has a heavy focus on functions. In JavaScript you can describe a function in…

Basics and Tools

10 April, 2018

The basis to work with The first thing you have to know before you can develop a successful web application is the platform you are running…