web-frameworks Questions
5
I just started Front-End-Developing and wanted to use Frameworks to make it more simple. So, I discovered Tailwindcss. However, tailwindcss requires my server to have node.js and npm in order to in...
Theophrastus asked 26/9, 2022 at 13:49
2
I came across this joke the other day. Someone on the internet was asking why do we need a backend, just connect the frontend to the database.
It seemed funny at first, but really is it possible to...
Scotticism asked 27/8, 2020 at 8:56
10
Solved
I found that I am confusing web framework and web server.
Apache is a web server.
Tornado is a web server written in Python.
Nginx is a web server written in C
Zend is a web framework in php
Flask...
Villegas asked 27/2, 2012 at 9:1
3
Solved
VSCode has a very customizable UI with Activity Bar, Sidebar, Tabs, Status Bar etc (https://code.visualstudio.com/docs/getstarted/userinterface); customizable via extensions and seems to have been ...
Cohette asked 23/6, 2021 at 13:2
6
I'm currently developing a server side json interface where several temporary files are manipulating during requests.
My current solution for cleaning up these files at the end of the request look...
Flatten asked 12/11, 2012 at 13:25
1
Solved
I supposed to work with FastAPI. I was taught that FastAPI is used with Uvicorn. What exactly is Uvicorn. I don't know what uvicorn is doing with FastAPI exactly. Can anyone explain?
Teaching asked 11/3, 2022 at 8:54
3
Solved
I have an Websocket endpoint defined in separate file, like:
from starlette.endpoints import WebSocketEndpoint
from connection_service import ConnectionService
class WSEndpoint(WebSocketEndpoint)...
Nitro asked 11/11, 2020 at 7:13
7
Solved
I'm trying to access a specific child by name. At the moment, because of where the child is, I'm calling the child by this:
this.$root.$children[0]
Which is ok as long as that child is always [0...
Wil asked 3/3, 2016 at 10:12
1
i have setup a web server from existing swagger.yml using go-swagger
which already gives me validations and routing for the apis
I want to use echo web framework to develop this server futher, Is ...
Cavour asked 26/6, 2018 at 14:52
2
Consider an example: I have the following express.js app (see code snippet below). I want to have one persistent connection to the DB, and one persistent connection to my own service (which require...
Bryna asked 7/1, 2016 at 16:34
2
Solved
I want to create an app exposing a web server with a REST API in Kotlin Native, but I can't find any recent project or lib.
There's kwang but it doesn't seems to be maintained anymore and it depend...
Precedency asked 19/11, 2019 at 21:57
2
Solved
I created a website with HTML/CSS. I also used Javascript for events (click on button, ...).
Now I want to connect a Python script with it and more importantly, return the results from my Python fu...
Beadle asked 29/1, 2020 at 21:7
5
Currently I am programming the Web Application based on Vaadin. I am quite happy with the learning cycle and the way how easy UI can be designed.
In general pluses of Vaadin are:
"Native" UI pro...
Gemsbok asked 4/1, 2012 at 20:23
5
Could someone please explain to me how the current python webframworks fit together?
The three I've heard of are CherryPy, TurboGears and Pylons. However I'm confused because TurboGears seems to u...
Britney asked 10/10, 2008 at 12:40
3
Solved
I'm a little confused about how to do something that I thought would be quite simple. I have a simple app written using Flask. It looks something like this:
from flask import Flask
app = Flask(__...
Gelsemium asked 14/2, 2012 at 11:31
2
Solved
In dealing with JS frameworks like AngularJS, Angular, and React, I've observed that directly interacting with the DOM is discouraged, and can often lead to bugs, if you ignore the warnings. When I...
Benghazi asked 28/10, 2018 at 3:7
5
Solved
Using Flask, how can I get the current port number that flask is connected to? I want to start a server on a random port using port 0 but I also need to know which port I am on.
Edit
I think I've...
Aviatrix asked 23/2, 2011 at 0:14
1
Solved
when I try to install with pip3:
$ pip3 install web.py
I receive an error:
Command "python setup.py egg_info" failed with error code 1 in /private/tmp/pip-build-i9tahb62/web.py/
I see old supp...
Winkler asked 4/5, 2017 at 19:39
2
I want to run a Python CGI on a shared hosting environment. I followed Flask's example and came up with a tiny application as below:
from flask import Flask
app = Flask(__name__)
@app.route("/")
...
Candicecandid asked 2/4, 2012 at 18:53
2
Solved
I'm using apache maven for build project, so i want to add my dependency javascript frameworks automatically based their version , organizing javascript frameworks , and download only modifiying la...
Conation asked 21/5, 2013 at 21:31
7
Solved
I would like to see how Web Developers avoid the double submission problem. So basically my understanding of the problem is as follows:
Double submission occurs when an impatient user submits a f...
Lepton asked 15/1, 2011 at 11:36
3
I have been using Django for many years (since Django 1.2). and in the past, I used different type of web frameworks (such as CakePHP, Rails, ASP.NET MVC, and some other full-stack framework). Djan...
Furness asked 9/5, 2015 at 23:55
6
JAX-RS has some MVC support, but I wonder if JAX-RS is really a good choice to build web application for human use.
If a user enters wrong or incomplete information in a form, it should be display...
Marmolada asked 30/1, 2010 at 14:29
4
Solved
Links is a lisp-like functional web programming language/framework that makes it easy to write a single piece of code that is compiled to server-side code, client-side JS and HTML, thus making it m...
Pledget asked 4/1, 2011 at 18:44
5
Solved
What are the current choices of mature Clojure web frameworks? I am looking for some kind of feature matrix telling me what the popular frameworks support and to what extent, including:
Res...
Offcenter asked 23/8, 2010 at 21:22
1 Next >
© 2022 - 2024 — McMap. All rights reserved.