Most voted "single-page-application" questions
Use to refer to the Single-Page Application, a web application or website that consists of a single web page for the purpose of providing a user experience similar to that of a desktop application.
Learn more…48 questions
Sort by count of
-
37
votes3
answers439
viewsHow to get a similar behavior between the Garbage Collection of a Single-Page Application and a Multiple-Page Application?
I’ve been doing a lot of research on the web and in stackoverflow communities, and I’m getting to the point of believing that Spas take almost no advantage of the GC algorithm of current browsers.…
javascript memory memory-management single-page-application memory-leaksasked 7 years, 6 months ago LeonanCarvalho 3,527 -
11
votes5
answers1091
viewsPros and cons of a 100% HTML/Javascript web application
I am seriously thinking of developing a web application, using only HTML/Javascript on client-side for performance gain and by which, any and all necessary communication with the server is made…
javascript html web-service web-application single-page-applicationasked 9 years, 5 months ago Iago Correia Guimarães 799 -
11
votes1
answer2132
viewsWhat are the advantages and disadvantages of SPA (Single-Page Application)?
As far as I can tell, the spa (Single-Page Application) are basically pages that do not suffer constant Reload (so the name, in free translation, "Single Page Application"), that is, change their…
single-page-applicationasked 5 years, 10 months ago Sam 79,597 -
9
votes4
answers2034
viewsDoes React affect SEO?
Since HTML is generated via Javascript and until the page is loaded there is no useful HTML in it, SEO can be affected if I make a 100% web application in React - a call single page application?…
-
8
votes2
answers282
viewsWhat are isomorphic applications?
In several articles and methods of developing modern applications, I come across isomorphic Applications. But what is it really? They usually define it as "the best of client/server side together".…
-
8
votes2
answers2357
viewsWhy is it necessary to use bind when working with ES6 and Reactjs?
Using ES5 in Reactjs development, a component can be declared as follows: var MyComponent = React.createClass({ alertSomething: function(event) { alert(event.target); }, render: function() { return…
-
8
votes2
answers795
viewsWhat is the best way to implement a loading bar?
I have a project SPA that in each screen transition, a loading-bar (progress bar) to improve the user experience (this UX will encompass more interactivity than performance). But when researching,…
-
8
votes1
answer975
viewsDo front-end or back-end processing?
In the client-side and server-side separation architecture, it is common to doubt who is responsible for some processing. On the one hand, processing on the client-side can be beneficial for…
web-application server-side single-page-application client-sideasked 6 years, 7 months ago vinibrsl 19,711 -
7
votes3
answers1959
viewsWhere should I really keep my JWT token?
In many tutorials (mostly Single Page Applications), the most common authentication method is JWT token. The problem is that most of them recommend persisting this token in the localStorage browser.…
-
7
votes1
answer1265
viewsWhat is "Prop Drilling"?
I believe the term is related to passing properties between various components, but I don’t understand exactly. What is "Prop Drilling"? How to avoid it? It is a common practice?
-
6
votes1
answer621
viewsWhat is SPA and what is different from a non-SAP page?
Reading this other post from the OS that talks about: applications isomorphic, is commented on in a reply about SPA. What is a Single Page Application? And what is the difference between a SPA page…
-
5
votes1
answer627
viewsDo one page websites appear in search engines?
One page sites are listed normally in search engines? There are several articles and it seems that One page sites are not very friendly to searchers, this is a reality? In which cases? Only in…
-
5
votes2
answers83
viewsDesign based on the VS2015 spa template. How the service is generated
I created a project using the SPA template in Visual Studio 2015, to learn and understand, but I found this example very complicated. I still don’t understand where the service is mounted and…
-
3
votes1
answer280
viewsUsing SPA (Single page application) and browser back button
Someone who works with SPA knows the best way to work with the back button of the browser? For example, we have a list of users and the detailing of these users through a click. When we are on the…
-
3
votes1
answer84
viewsPlay Framework and AJAX (SPA)
Is it possible to develop SPA with Play? Someone has had this experience and has something to report?
-
3
votes0
answers54
viewsSPA App in Vuejs - Use Session or not?
I’m starting with applications SPA (single page application) with VueJS. The question is about user control. I use session for this or not? For me to know how long the user was logged in, I record…
-
2
votes2
answers3120
viewsSingle Page Application with jQuery
How can I develop a SPA with jQuery? I did with Angularjs with the following code, but I’m having difficulties to migrate to it definitively and decided to stick with jQuery not to be late. var…
javascript jquery html5 angularjs single-page-applicationasked 9 years, 12 months ago Vinícius Lara 3,750 -
2
votes1
answer2251
viewsMVC or SPA app
I have been working with MVC for the last two years, but lately I have been following the growth of SPA applications. After reading several articles on this subject I had a question, if I want to…
-
2
votes1
answer305
viewsSPA with ui Router Angular JS files very large
Talk guys. This is a conceptual doubt. Recently I started to develop a SPA application (Single Page Application) making use of the partial rendering concept, using ui Router (more information about…
-
2
votes1
answer195
viewsProblem with Google Charts + Angularjs + ng-view
I’m developing a SPA with Angularjs, and I’m doing some tests with Google Charts, however, I’m having a problem that I’m not able to identify why. When logging into the application, the user is…
-
2
votes1
answer706
viewsDoubt with @Style.Render
If I put in mine view Layout that line: @Styles.Render("~/Content/css") I’m stating that all the files .css in the briefcase Content will be rendered? I mean, I don’t need to put any .css explicitly…
-
2
votes2
answers437
viewsPutting social media buttons on the site
I am "playing" with the SPA MVC(C#) and would like to know how I put the social media buttons on my site. I looked for some examples here on the site and by my query, I found nothing that satisfied…
-
2
votes0
answers85
viewsPWA: How to save an offline POST and fire it when the application is online?
From what I saw it is possible to cache GET requests / service Workers so that they are triggered when the application comes back online. It is possible to do the same functionality with a POST? Is…
-
2
votes1
answer617
viewsAdvantages x Disadvantages SPA Vuejs
I have an application (closed system) in PHP structured in the company I work and we will rewrite this application to improve performance, usability and evolve this application. I am studying Vuejs…
-
1
votes1
answer597
viewsAngular + Requirejs
Below is the structure of the code to facilitate: main.js require.config({ baseUrl: '/', shim: { angular: { exports: "angular" }, route: { deps: ["angular"] }, app:{ deps:['route'] }, controller:{…
-
1
votes1
answer318
viewsIs there a framework to assist in the authentication process when using Google Appengine?
I don’t want to use the app session. Would Spring Security be the only option? In this case it would be a SPA app.
java framework spring-security google-app-engine single-page-applicationasked 8 years, 5 months ago gledson85 23 -
1
votes1
answer27
viewsC#(SPA) template does not run
I was auditioning with the Single Page Application, using the visual studio template. Well, I created the project and did nothing, nothing at all, I just created the project and I circled and…
-
1
votes3
answers52
viewsI did a project using the VS2015 SPA template. I want to take the start login page
I made a project and when I rotate it is the login page that is the first to be shown. I would like to know how I make to leave the home page as main and not login. How I do this?
-
1
votes1
answer118
viewsView - Single Page Application
When I discovered the SPA style I was very excited, but I went to research on some frameworks that do this, I saw that are mvc’s, but totally aimed at the client(front) and this did not like much,…
-
1
votes1
answer323
viewsModern Web: SPA/REST
Speaking on the modern web, we have new concepts like SPA/Rest and I keep some doubts. Is it correct to focus/study these concepts? Since they have emerged as an improvement on some old concepts. Is…
-
1
votes2
answers325
viewsJquery - Best way to select the same element
My system works in the form of SPA (Single Page Application), I load all the functions that I will use in the system in a single file (which is light by the way), the problem is that every time I…
-
1
votes4
answers54
viewsDoubt about the use of the VS2015 SPA Template
I need to do a routine to send email, through a form I made, using the VS2015 SPA Template. I put two buttons, Cancel and Send. The question is not in the code of the email, but how to assign the…
-
1
votes0
answers172
viewsSingle Page Application in Webview of Android Studio
It is possible to use the angular Single page application in Webview with Android Studio?
angularjs android-studio webview angular-routes single-page-applicationasked 7 years, 3 months ago Aderbal 119 -
1
votes0
answers54
viewsHow to change a meta tag in a SPA?
I have a SPA made with pure javascript, and I needed to change the meta Description after an event, for example, a click. Using javascript I can change, but I believe that for Google’s Crawler it…
-
1
votes1
answer38
viewsHow to declare routes that are cached and other routes that are not stored?
Good morning. I am developing a SPA system whose part is available only when the user is online and another is available even offline. The offline part is configured in the service worker but a…
-
1
votes0
answers56
viewsredirect all air requests to index.php and take the value passed by the URL
I need to redirect all requests to index.php so that you can insert the . php file corresponding to the url into the body. Example when accessing the www.dominio.com.br/forgot password click on the…
-
0
votes1
answer7482
viewsWhat’s the expressjs for?
What is it, what is it for and how does express.js work? It is recommended to use it together with Angularjs in a SPA app?
-
0
votes1
answer43
viewsRemove sharp(#) from Crossroads.js and run without it, how do I do?
Iae galera, so I use this lib to do the routes. however they come this # and even if I take, it still doesn’t work if I recharge in the browser F5 url: www.locahost.com/home = not found F5 url:…
-
0
votes1
answer238
viewsParallax Component - Materializecss and Angularjs
I am using in a page, Angularjs and materializecss. I am doing the angular SPA scheme, in my index.html I have a menu and a footer and among them have the tag <div ng-view></div> I use…
angularjs materialize single-page-application parallaxasked 8 years, 4 months ago William Manesco 70 -
0
votes1
answer103
viewsDifference between Webapi and SPA
I know that SPA is nothing more than a WebApi specific, but the question is: How do I differentiate one from the other, ie what the purpose of each in the Development world. Why would I develop a…
-
0
votes1
answer203
viewsSPA and MPA in Angular
I didn’t find many about creating angular MPA, I only find SPA articles. someone could refer me articles or link’s to study, I am grateful!
-
0
votes1
answer257
viewsRoute Error in Vue js
My App.Vue <template> <div id="app"> <router-view></router-view> </div> </template> <script> export default { name: 'app', data () { return { } } }…
-
0
votes0
answers15
viewsHow to load an application dynamically with React
When we build a SPA in React, the code is all in memory, all parts of the application are in a single file. How can I split my SPA to be loaded as the user uses the features, for example: load the…
-
0
votes2
answers208
viewsContext 'this' of Eventemitter<string> is not attributable to the 'this' method of type Observable<string>
I looked at the example in a Github repository. The application runs successfully and the written code works normally, but I have the following error in my Visual Studio Code: The 'this' context of…
-
0
votes0
answers170
viewsSingle page application using only html, css and pure javascript without frameworks
Hello I was trying something for study purposes only. I wonder if there’s a way to do that: make a single page application, without using any external framework, only html, js and css. what I’m…
-
-1
votes1
answer162
viewsdoubts with the single page application of angular
am beginner with single page, and would like to know if I need a server to run my web page that I am creating with single page? if yes which the best server to use?
-
-2
votes1
answer89
viewsSql server error on the hosting server
I’m making a website, through the Visual Studio template. With me it works, but when I go up to the server and when I soon, it gives me the error below. I used as template the SPA and Visual Studio…
-
-2
votes1
answer57
viewsAfter a create, update an array with data from a get or increment the Response in the array?
Assuming I have a table showing data from an array, when entering a new element in the database via a request POST, how best to update the data on screen? I’m always in doubt between making a GET…