All Projects → philnash → react-programmable-chat

philnash / react-programmable-chat

Licence: other
A React example of Twilio Programmable Chat

Programming Languages

javascript
184084 projects - #8 most used programming language
HTML
75241 projects
CSS
56736 projects

Projects that are alternatives of or similar to react-programmable-chat

markdown-editor
✏️ A very simple but useful Markdown Previewer and Markdown Editor with CodeMirror, Markedjs, and Create-react-app
Stars: ✭ 25 (-13.79%)
Mutual labels:  create-react-app
react-app-rewire-babel-loader
Rewire babel-loader loader in your create-react-app project using react-app-rewired.
Stars: ✭ 20 (-31.03%)
Mutual labels:  create-react-app
laravel-authy
Rinvex Authy is a simple wrapper for @authy TOTP API, the best rated Two-Factor Authentication service for consumers, simplest 2fa Rest API for developers and a strong authentication platform for the enterprise.
Stars: ✭ 35 (+20.69%)
Mutual labels:  twilio
fetch
Isomorphic Wordpress API client and React hooks - super tiny, super fast.
Stars: ✭ 47 (+62.07%)
Mutual labels:  create-react-app
first-twilio-video-application
A demo of Twilio Video for the Build your first Twilio Video application webinar.
Stars: ✭ 16 (-44.83%)
Mutual labels:  twilio
shopping-cart
A simple Shopping-cart built with React and Django REST Framework(DRF)
Stars: ✭ 41 (+41.38%)
Mutual labels:  create-react-app
quarantine-bot
WhatsApp bot powered by Twilio API to get through the quarantine. Latest COVID19 statistics, world news, inspirational quotes and cat photos.
Stars: ✭ 24 (-17.24%)
Mutual labels:  twilio
twiml template
TwiML templates for Rails and Tilt.
Stars: ✭ 16 (-44.83%)
Mutual labels:  twilio
contentful-static-react
A starter kit for building a static website with React as the templating library and Contentful as the CMS.
Stars: ✭ 48 (+65.52%)
Mutual labels:  create-react-app
egghead-bookshelf
An example React application to accompany the "Add Internationalization (i18n) to a React app using React Intl" Egghead.io course
Stars: ✭ 28 (-3.45%)
Mutual labels:  create-react-app
monoreact
📦 React workspaces implementation
Stars: ✭ 13 (-55.17%)
Mutual labels:  create-react-app
nodejs-spider
No description or website provided.
Stars: ✭ 18 (-37.93%)
Mutual labels:  create-react-app
dj-twilio-sms
Twilio SMS Integration for Django
Stars: ✭ 15 (-48.28%)
Mutual labels:  twilio
land acknowledgement
Land Acknowledgement SMS Application
Stars: ✭ 27 (-6.9%)
Mutual labels:  twilio
passport-examples
A variety of examples using PassportJS with ExpressJS and ReactJS applications
Stars: ✭ 44 (+51.72%)
Mutual labels:  create-react-app
typey-type
Typey Type for Stenographers is a free typing app designed specifically to help steno students practise and rapidly master stenography.
Stars: ✭ 51 (+75.86%)
Mutual labels:  create-react-app
fyi
Map & Explore your organization's System Architecture
Stars: ✭ 28 (-3.45%)
Mutual labels:  create-react-app
create-react-redux-app
React boilerplate based on create-react-app
Stars: ✭ 49 (+68.97%)
Mutual labels:  create-react-app
react-intl-cra
🔧 Extract messages of Creact React App from the command line.
Stars: ✭ 68 (+134.48%)
Mutual labels:  create-react-app
reasonreact-starter
Minimal yet powerful ReasonReact template
Stars: ✭ 33 (+13.79%)
Mutual labels:  create-react-app

Twilio Programmable Chat on React

This is an implementation of Twilio Programmable Chat using React.

Setting up the app

To run this application you will need four configuration parameters, available from your Twilio console.

Config Value Description
Service Instance SID Like a database for your Programmable Chat data - generate one in the console here
Account SID Your primary Twilio account identifier - find this in the console here.
API Key Used to authenticate - generate one here.
API Secret Used to authenticate - just like the above, you'll get one here.

A Note on API Keys

When you generate an API key pair at the URLs above, your API Secret will only be shown once - make sure to save this in a secure location, or possibly your ~/.bash_profile.

Setting Up The Node.js Application

Create a configuration file for your application:

cp .env.example .env

Edit .env with the four configuration parameters we gathered from above.

Next, we need to install our dependencies from npm:

npm install
cd client/
npm install
cd ..

Now you are ready! Run the application with

npm start

Your application should start up at http://localhost:3000.

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].