Does echo work with React Native?
See original GitHub issueI’m trying to integrate echo with React Native, i followed the installation guide in the docs and added the following:
import Echo from "laravel-echo"
const EchoNotifications = new Echo({
broadcaster: 'pusher',
key: '30c47b6ab35c9be45426'
});
Which gives me the error can't find variable: Pusher
and points to this line in echo.js:
this.pusher = new Pusher(this.options.key, this.options);
Issue Analytics
- State:
- Created 6 years ago
- Comments:6 (3 by maintainers)
Top Results From Across the Web
Connect my React Native app to Echo Device - Forums
Hi guys! My internship project is to make a React Native app that connects with Echo and sends commands to it.
Read more >React Native + Laravel Echo using socket.io - Medium
This article focuses on integrating Laravel Echo with React Native applications. EDIT: It works not only with RN but also with every JS ......
Read more >Create react native app that will start with voice command like ...
I am using react-native-voice inside the app to recognize what I am saying but only after I click on the app and press...
Read more >Google Home Assistant / Amazon Alexa - React Native?
Hi guys, since any app with an audio element will have to start being developed / transpiled to work with Google or Alexa,...
Read more >Building a Web and Voice App ecosystem (Amazon Alexa ...
Effectively, the user has a choice to interact with your system either via Alexa, Google Home or the traditional input fields in a...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@okaufmann using the PR you mentioned. PR #186 Managed to solve mine using with these code block:
As of today it can work because of this PR https://github.com/laravel/echo/pull/186