Questions tagged [devserver]

63 questions
0
votes
0 answers

Running electron-forge app without webpack dev server

I've been creating an electron app template using the command npx create-electron-app myapp --template=webpack This will create a folder with the files /…
Artisan72
  • 3,052
  • 3
  • 23
  • 30
0
votes
0 answers

React npm start works but dev server not

Since this morning I can't launch any React JS Project in my dev server. I explain. When I launch npm start command, all works fine, no any error message, all works as usual, it opens me a tab in my browser, but it loads forever and I just have a…
0
votes
1 answer

Transforming const to the configured target environment ("es5") is not supported yet when using vite

this is my tsconfig for a react project built without create-react-app { "compilerOptions": { "target": "es5", "outDir": "lib", "lib": ["dom", "dom.iterable", "esnext"], "declaration": true, "declarationDir": "lib", …
Akshay Vijay Jain
  • 13,461
  • 8
  • 60
  • 73
0
votes
1 answer

What does "secure" mean from Webpack, devServer proxy?

From the official page from webpack(DevServer), secure property is written like 'false' with explanation like below: module.exports = { //... devServer: { proxy: { '/api': { target: 'https://other-server.example.com', …
yaerhee
  • 17
  • 4
0
votes
1 answer

How to get dev server proxy target inside app?

I'm using iframe in the app, I don't know how to proxy it's src via dev server, therefore I'm doing const origin = process.env.NODE_ENV === 'production' ? location.origin : 'http://192.168.1.2:8081' to make the iframe work in development mode,…
Wenfang Du
  • 8,804
  • 9
  • 59
  • 90
0
votes
0 answers

Is it Possible to Run a Webpack/Create-React-App Dev Server *Within* an Express App

I understand that the normal use case for a React/Express app is to run one dev server for your Express app, and one for your React app. My question is, is it at all possible to run the front-end dev server within an Express app, such that: I can…
machineghost
  • 33,529
  • 30
  • 159
  • 234
0
votes
1 answer

problem with an autorun devserver 17 in windows startup on windows 10

I have a program that builds with Delphi and It uses MySQL for DB in Windows 10. I install Devserver 17 but it can not be run in windows startup. I need to run Devserver before my program. I searched on google and used some tips but my problem…
siavosh1
  • 41
  • 7
0
votes
2 answers

Can EasyPHP Devserver Appache Listen to Multiple Ports?

Installed EasyPHP Devserver on Windows 7. EasyPHP Devserver Version 17.0 (pretty the latest) EasyPHP Devserver Apache Version 2.4.25 You may skip direct to my conclusion below. Here is my process of trials. In the httpd.conf file, I added the…
midnite
  • 5,157
  • 7
  • 38
  • 52
0
votes
1 answer

Run Webpack + Vue in a Local VirtualServer

Operating System: Mac OSX High Sierra Node Version: v10.15.0 NPM Version: 6.13.6 webpack Version: webpack-dev-server Version: Browser: Chrome my virtual server is http://lab.local this point to xampp/htdocs/lab i have the project in…
apositivo
  • 343
  • 1
  • 9
0
votes
1 answer

Cannot reach port of gcloud appengine devserver

for testing I try to run the gcloud devserver inside docker with that comment: sudo /usr/local/gcloud/google-cloud-sdk/bin/java_dev_appserver.sh --disable_update_check --port=8888 --help /app/target/qdacity-war/ 2>&1 | sudo tee…
JuliaK
  • 1
  • 1
0
votes
1 answer

angular app runs in local tomcat but gives error in dev environment

I am using angular 6 and deployed app in local tomcat. Others are able to access it from IE11. But when we deploy it on dev server tomcat few people are getting Expected identifier / Expected : error Rest are able to view pages. Any guess.
Aniket
  • 310
  • 1
  • 4
  • 22
0
votes
1 answer

Regard to Java web application "heap space memory" Error, how to increase Google App Engine development server memory size?

To develop Google AppEngine web application, I normally test in the development server by using "mvn appengine:devserver". Whenever browsing localhost, the application shows OutofMemoryError as following. It may be the local_db.bin size is quite…
0
votes
2 answers

EasyPHP Devserver 17: The program can't be start because is libssh2.dll is missing

I'm new in PHP development. I was using Easyphp old version, now I upgraded to the new one but now an alert error message the program can't be start because is libssh2.dll missing. is displaying when trying to open it or when I enable cURL…
Rahul Kumar
  • 13
  • 1
  • 7
0
votes
2 answers

mvn appengine:devserver [ERROR] Could not find goal 'devserver' in plugin com.google.cloud.tools:appengine-maven-plugin:1.3.1 among available goals

Yes, I went through similar question on 'Goal' not found Error. But havent been able to solve my problem - Im deploying my SpringBoot App to GCP and following this. Had a few hiccups so far, but managed to overcome. This time, the problem is that…
0
votes
1 answer

Virtual Host not running http

I recently restarted my system without any update only to find out that all my virtual host address now points to https and not http, I cant access any of my virtual host address anymore, but can only see it via the localhost address please what…