All Projects → GetStream → React Native Activity Feed

GetStream / React Native Activity Feed

Official React Native SDK for Activity Feeds

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to React Native Activity Feed

Smoothstream
Webcam, PiCamera streaming over the network with Python made easy.
Stars: ✭ 133 (-14.74%)
Mutual labels:  stream
Owasp Mth3l3m3nt Framework
OWASP Mth3l3m3nt Framework is a penetration testing aiding tool and exploitation framework. It fosters a principle of attack the web using the web as well as pentest on the go through its responsive interface.
Stars: ✭ 139 (-10.9%)
Mutual labels:  stream
Gulp Run
Pipe to shell commands in gulp
Stars: ✭ 148 (-5.13%)
Mutual labels:  stream
Multi Streaming Server
A NGINX server with RTMP module to send video streaming to multiple services simultaneously (Youtube, Twitch, Dailymotion, Hitbox, Beam, etc...).
Stars: ✭ 132 (-15.38%)
Mutual labels:  stream
Marble
Marble.js - functional reactive Node.js framework for building server-side applications, based on TypeScript and RxJS.
Stars: ✭ 1,947 (+1148.08%)
Mutual labels:  stream
Player
▶️ video player in Swift, simple way to play and stream media on iOS/tvOS
Stars: ✭ 1,849 (+1085.26%)
Mutual labels:  stream
Easyreact
Are you confused by the functors, applicatives, and monads in RxSwift and ReactiveCocoa? It doesn't matter, the concepts are so complicated that not many developers actually use them in normal projects. Is there an easy-to-use way to use reactive programming? EasyReact is born for this reason.
Stars: ✭ 1,616 (+935.9%)
Mutual labels:  stream
Fs2
Compositional, streaming I/O library for Scala
Stars: ✭ 1,998 (+1180.77%)
Mutual labels:  stream
Azure Event Hubs Spark
Enabling Continuous Data Processing with Apache Spark and Azure Event Hubs
Stars: ✭ 140 (-10.26%)
Mutual labels:  stream
Jaxon
Streaming JSON parser for Elixir
Stars: ✭ 145 (-7.05%)
Mutual labels:  stream
Goka
Goka is a compact yet powerful distributed stream processing library for Apache Kafka written in Go.
Stars: ✭ 1,862 (+1093.59%)
Mutual labels:  stream
Zipstorer
A Pure C# Class to Store Files in Zip
Stars: ✭ 139 (-10.9%)
Mutual labels:  stream
Aliyun Oss Upload Stream
A Node.js module for streaming data to Aliyun oss via the multipart upload API
Stars: ✭ 144 (-7.69%)
Mutual labels:  stream
Fileio.jl
Main Package for IO, loading all different kind of files
Stars: ✭ 133 (-14.74%)
Mutual labels:  stream
Munus
Power of object-oriented programming with the elegance of functional programming in PHP.
Stars: ✭ 149 (-4.49%)
Mutual labels:  stream
Hashlib4pascal
Hashing for Modern Object Pascal
Stars: ✭ 132 (-15.38%)
Mutual labels:  stream
Kefir
A Reactive Programming library for JavaScript
Stars: ✭ 1,769 (+1033.97%)
Mutual labels:  stream
Fetch Stream Audio
Low Latency web audio playback examples for decoding audio streams in chunks with Fetch & Streams APIs
Stars: ✭ 153 (-1.92%)
Mutual labels:  stream
Gulp Remember
A plugin for gulp that remembers and recalls files passed through it
Stars: ✭ 149 (-4.49%)
Mutual labels:  stream
Form Data
A module to create readable `"multipart/form-data"` streams. Can be used to submit forms and file uploads to other web applications.
Stars: ✭ 1,947 (+1148.08%)
Mutual labels:  stream

Official React Native SDK for Activity Feeds

React Native components to create activity and notification feeds using Stream

NPM Build Status Component Reference

react native activity feed

The official React Native integration library for Stream, a web service for building scalable newsfeeds and activity streams.

TL;DR built-in components for social networks and regular apps

  • Flat feeds
  • Timelines and Newsfeeds
  • Notification feed
  • Likes
  • Comments
  • Activity detail view
  • Realtime notifications

🔗 Quick Links

🔐 React Native Compatibility

To use this library you need to ensure you match up with the correct version of React Native you are using.

react-native-activity-feed version getstream react-native
1.x.x >= 0.6.x >= 0.60.0
0.x.x < 0.6.0 < 0.60.0

🔮 Example Apps

🛠 Installation

Expo package

# For Expo apps
expo install expo-activity-feed expo-permissions expo-image-picker

Native package

# For apps with native code
yarn add react-native-activity-feed react-native-image-crop-picker
npx pod-install

Note If you are planning to use the image picker functionality, there are some additional steps to be done. You can find them here - https://github.com/ivpusic/react-native-image-crop-picker/blob/v0.25.0/README.md#post-install-steps

🔌 Usage & Activity Feed setup

Setup StreamApp component

In order to use Stream React Components in your application, you first need to initialize the StreamApp component. StreamApp holds your application config and acts as a service/data provider.

<StreamApp
  apiKey='{API_KEY}'
  appId='{APP_ID}'
  userId='{USER_ID}'
  token='{TOKEN}'
  analyticsToken='{ANALYTICS_TOKEN}'
>
  {/* everything from your application interacting with Stream should be nested here */}
</StreamApp>
  1. API_KEY your Stream application API_KEY
  2. API_ID your Stream application ID
  3. USER_ID current user's ID
  4. TOKEN the authentication token for current user
  5. ANALYTICS_TOKEN [optional] the Analytics auth token

You can find your API_KEY and APP_ID on Stream's dashboard.

Generating user token

The authentication user token cannot be generated client-side (that would require sharing your API secret). You should provision a user token as part of the sign-up / login flow to your application from your backend.

const client = stream.connect(API_KEY, API_SECRET);
const userToken = client.createUserToken(userId);
console.log(userToken);

Generating analytics token

React components have analytics instrumentation built-in, this simplifies the integration with Stream. In order to enable analytics tracking, you need to initialize StreamApp with a valid analytics token. You can generate this server-side as well.

const client = stream.connect(API_KEY, API_SECRET);
const analyticsToken = client.getAnalyticsToken();
console.log(analyticsToken);

Copyright and License Information

Copyright (c) 2015-2019 Stream.io Inc, and individual contributors. All rights reserved.

See the file "LICENSE" for information on the history of this software, terms & conditions for usage, and a DISCLAIMER OF ALL WARRANTIES.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].