Digital Experience Analytics, Full Story

FullStory is the digital experience analytics platform for on-the-fly funnels, pixel-perfect replay, custom events, heat maps, advanced search and Dev Tools User Identification Each time a page loads from a user we can identify, we will want a bit of JavaScript to call the FS.identify function to associate your own application-specific id with the active user. …

Logger for Redux

Middleware of Redux Redux middleware solves different problems than an Express or Koa middleware, but in a conceptually similar way.It provides a third party extension point between dispatching an action, and the moment it reaches the reducers.We can use Redux middleware for logging, crash reporting, talking to an asynchronous API, routing, and more.Here, the one good method …

Integrating React Component into another Framework based on Javascript – React wihtout JSX.

In some case, we should use React Component in other framework based on Javascript such as Purescript .Framework can compile Javascript or ES6 but can not JSX because JSX is required for using React. Then what can we do for it?We can use it without JSX and the framework can compile them.Each JSX element is …