General questions about php and react.js [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 1 year ago.
Improve this question
I'm about to learn react.js but I have a lot of questions,
if I'm learning react do I need PHP?
Do I need PHP with react.js and how will I use it inside PHP if possible
if I do PHP do I need React?

React.js is a javascript front-end library. It is fully written in javascript and that is the only language you need to know to use it.
PHP is a scripting language that is generally used to create the backend of your applications.
So yes you could technically develop your backend using PHP and then use React to create the frontend of your application, however it would be easier to simply use javascript to create both the backend and the frontend of your project.
If you're interested in backend development using javascript, I recommend you start by looking at node.js and the express.js library.

Related

is it possible to use pure node js without using express as a back-end for vue js? [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 2 years ago.
Improve this question
I've already created a project using vue js and node js but with express. I was just thinking if it's possible to use node js alone without using such a framework?
Yes, it's possible to develop a whole website/web app without an extra framework like express. The thing is that you have to manage so many things on your own.
Your web app/website code became harder to read as you progress in NodeJS. URL routing is complex than express. So, You have to write a bunch of switch cases.
It's possible to use NodeJS alone. But, you have to write more code that is provided by express or any other framework.

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.

iOS - What programming language does Parse use? [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've heard of Parse recently and how it's a good service to use for building a back end for an iOS app, but I can't find ANYWHERE that states what programming language I'll need to write that backend code...PHP? Javascript? Java? Which is it?
All I'm reading about are iOS sdk's, Javascript sdk's, etc. I just want to know what programming language I need to know in order to write backend code with Parse.
You can create your parse client code in Swift or Objective-C but If you would need to write cloud code then you can write code in javaScript.
Here is a simple tutorial that describe the complete scenario how to startup a totally parse.com backend.
1-http://www.raywenderlich.com/98831/parse-tutorial-getting-started-web-backends
2-http://www.appcoda.com/ios-programming-app-backend-parse/
Hope it will help you to create wonderfull apps.

How to integrate existing angular js application into Laravel 5 [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 one already developed Angular js application.Routing and templates are already done in that application.
Now my customer need it to integrate this application using Laravel for PHP integration.
Guys please guide me how I proceed.
If we can't able to integrate then kindly suggest any other PHP framework which is comfort for angular application.
Thanks in advance
AngularJS is javascript, it runs on user's browser, Laravel is php, it runs on your server. They communicate via HTTP requests and they are complelty independant one from another.
If you have to migrate your application from AngularJS to PHP, that means you have to write your application again, because they have different logic, approaches and way of working.
If you have to let your AngularJS communicate with a remote server, that is done via ajax requests and it doesn't matter what framework you use, since AngularJS will only look at the output produced from your server.

How to use angularJs in GWT? [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 want to integrate angularJs in my existing GWT application. I am new to angularJs. How to start with it?
Thanks
Take a look at
AngularGWT - This is a library that enables Authors to write components or complete apps for AngularJS in Java. This is mostly done using compiler castings for Google Web Toolkit to "compile" Java Code into Javascript.
AngularGWT is the way to go. But if you want an simple way off, include the angular.js in your *.html file and use JSNI to access Angular JS from your code.

Categories

Resources