How to start a chat client app on various platforms [closed] - javascript

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 9 years ago.
Improve this question
Basically I'm trying to develop an App that sends some information (Text and Images) to a server and then this server redirects the info to a other devices.
What framework do you know to handle realtime communicaction between users?, I've checked Firebase (Firebase Cloud Messaging), and also I have checked frameworks like ionic to be able to develop once and then deploy in various platforms.

Check out app warp - it pretty much has all the server code written for you already:
http://appwarp.shephertz.com/
It's mostly used for games, but you can easily use their services for IM.

Related

Node server for electron app [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 years ago.
Improve this question
I'm creating an aplication with Electron + React. The app has to allow users to save files on the server (something like Google Drive).
Now, im building the server side with express but i dont now how to send files to the client. How could i do it?
Would it be nice to use an FTP server instead of node?
Thanks.
Well there are 2 options regardless:
1) You just send your app unique link of the file witch expires after some time.
2) You stream the file to electron directly(Just google node streaming.
Thats about it.

Creating and live-updating database without php (on Heroku) [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 years ago.
Improve this question
I'm wondering if there's some way, using JS+nodejs, to create and to live- update a database.
I am in a bit of a time crunch and am very unfamiliar with PHP, and am having problems using PHP+Heroku. I am much more familiar with JS+nodejs. Any suggestions would be appreciated.
Have you tried using meteor?
https://www.meteor.com/
Meteor runs on top of NodeJS and you can build apps with two way data binding ( database and front-end) using meteor. Plus It has support for Angular and React.
https://www.meteor.com/tutorials/blaze/creating-an-app
Alternatively you can build everything from scratch with NodeJS, some front-end framework and Socket.io.

How to implement a chat feature on Laravel Application? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
I have
a web-application that use :
Laravel for the back-end
Angular for the front-end.
I finished
implement the whole
user-authentication
register
log-in/log-out
forgot-password
reset-password
email activation
Now, I want
to add a chat feature to allow my users to chat with each other.
How do we make something like that ? How do we start ?
For anyone that have done this, how did you start ?
Any hints or suggestions on this will be much appreciated.
Actually chat application should not be done in pure PHP i would build chat application on the top of socket.io
https://github.com/krimple/angular-socketio-chat and pushing messages from laravel to socket.io client (angular)
http://www.codetutorial.io/laravel-5-and-socket-io-tutorial/

Use Webhook without Firebase [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
Is it possible to use a different backend with the Webhook CMS?
I love everything about Webhook, but being able to prerender content is an absolute requirement for my project because of SEO considerations. This is unfortunately not possible with Firebase.
Has anyone ever managed to swap out Firebase in Webhook for something else?
Webhook only uses Firebase for the CMS. The deployed sites are pre-generated staticly. This means google will be able to crawl it. Since static sites are themselves the fasted way to deliver content, you'll also have that advantage versus a traditional system.

hybrid app development using phonegap and ADO.NET [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 9 years ago.
Improve this question
I'm new to web application development.I want to develop a hybrid application which works for Andriod, iOS and desktop as well using phonegap. I'm thinking of mySQl as the database and ADO.NET layer(web Services) on that which communicates with javascript for sending data to and fro.Is this achievable?
Any other suggestions are also welcomed.Thanks in advance
Yes , you this will be achievable as you want to develop hybrid application. Best way for CURD operation in phonegap is JSON

Categories

Resources