Saturday, October 6, 2018

An Introduction to React using Flux Architecture

Flux is developed by Facebook as an application architecture for UI  implementation. React is a JavaScript library which is used to build user interfaces.  So Facebook use Flux architecture when they implementing user interfaces with React.

Applications which are implemented in React using flux architecture have four major parts. These are independent nodes with distinct inputs and outputs.
  •    Actions
  •    Dispatcher
  •    Stores        
  •  Controller Views

Unidirectional Data Flow through major parts




How to send Slack notification using a Python script?

 In this article,  I am focussing on sending Slack notifications periodically based on the records in the database. Suppose we have to monit...