Skip to main content
Filter by
Sorted by
Tagged with
-3 votes
0 answers
38 views

I’m learning the basics of web development and recently got into different types of rendering (CSR, SSR, SSG, etc.). Server-side Rendering (SSR) Client-side Rendering( CSR Static Site Generation (SSG)...
user29407477's user avatar
0 votes
0 answers
83 views

I'm having a persistent issue deploying a Vite + React (TypeScript) application with a Node.js (Express) backend to Vercel, and I'm caught in a frustrating loop. The Tech Stack: Frontend: Vite, React,...
Krishna Dhoot's user avatar
0 votes
0 answers
49 views

I was passing a random fieldName in the frontend (through axios) to a backend API. The backend API definition (smithy) did not have that particular field name. but it still didn't throw an error. Why?
seaworthiness's user avatar
0 votes
0 answers
159 views

I'm facing a weird issue with my Next.js App Router (v15) middleware for JWT-based route protection. I'm using jose for token verification because it's Edge-compatible. The issue is that everything ...
GrkmEldeniz's user avatar
1 vote
0 answers
71 views

i need help figuring out how to disable scrolling when vue easy lightbox is open. nothing ive tried works. overflow: hidden doesnt work i have tried adding :scrollDisabled="true" . still no ...
sunny's user avatar
  • 11
0 votes
1 answer
250 views

In below NextJS code how can i access Authorization in middleware when client component call API every time api is call it show empty headers in middleware can some on explain it Client Component:- '...
GAMING WARRIOR's user avatar
0 votes
0 answers
49 views

i created a cluster in mongodb atlas it had some dummy data like this "sample_mflix(movies(title, runtime, year))" and i want to display it on a table, here is the code for the component ...
paramicia's user avatar
0 votes
0 answers
30 views

import { QueryBuilderDnD } from '@react-querybuilder/dnd'; import * as ReactDnD from 'react-dnd'; import * as ReactDndHtml5Backend from 'react-dnd-html5-backend'; import { add, QueryBuilder, ...
deepak mehra's user avatar
2 votes
1 answer
125 views

const [numPagesState, setNumPagesState] = useState(0); const allCertificates = formik?.values?.certificate_file || []; {allCertificates?.length > 0 && allCertificates?.map((el) => { ...
Soumil Nimbalkar's user avatar
0 votes
1 answer
403 views

Problem: I’m using Clerk authentication in my React app to manage user authentication. I’m trying to make an API request to my backend (Express.js) after the user has logged in successfully, but I ...
Apoorv singh yadav's user avatar
1 vote
0 answers
265 views

I'm working on drawing an architecture diagram for a full-stack app on AWS. I'm using a three-tier architecture: the first tier will contain my frontend app on an EC2 instance, the second tier will ...
victor robin's user avatar
1 vote
2 answers
82 views

package com.hexa.amazecare.controller; import java.util.List; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.http.ResponseEntity; import org....
Jeppy's user avatar
  • 11
-1 votes
1 answer
184 views

I am working on implementing shopping cart functionality in a React application, and while I have made some progress, I encountered challenges in managing the application's state effectively. The ...
Pv33_'s user avatar
  • 27
-1 votes
1 answer
58 views

I’ve deployed my backend on Render.com, but I'm having issues getting my frontend to work on both Vercel and Netlify. The latest attempt was with Netlify, but I encountered the same problem. I'm using ...
CreedCoding's user avatar
1 vote
1 answer
58 views

I am working on a project with Flask and React and more specifically, right now I am working on an API endpoint that has the utility of receiving a .txt file from the frontend, and then it would run a ...
ivanlosarcos's user avatar
0 votes
1 answer
98 views

i am trying to make the login page which will be same for user and admin . i differentiated between them by putting a checkbox in form and the login for userDashboard is working properly but the ...
Shubham Jamadade's user avatar
0 votes
1 answer
64 views

I am making a react web-page about a Finance Planner and i have 4 components: Dashboard, Homepage, Login-page, and SignUp-page. What happened is i first coded the pages in basic HTML and CSS and then ...
Ishan Joshi's user avatar
1 vote
0 answers
89 views

I have a git repository that contains an FS project: a database, server (C#), and client (React). Since there is one common repository, when I change files on the server side by using the Visual ...
ne0m's user avatar
  • 29
0 votes
1 answer
130 views

C:\Users\User\Desktop\fyp\AppOne>mvnw :: JHipster ? :: Running Spring Boot 3.3.3 :: Startup profile(s) dev :: :: https://www.jhipster.tech :: 2024-09-04T02:55:30.742+08:00 DEBUG 34664 --- [...
泽三秋's user avatar
0 votes
1 answer
53 views

I am trying to create a mock social media app and everything works fine for now. However, I wonder if I can manage to upload up to 5 images for one post and also fetching and rendering them. I just ...
Murad Aghamirzayev's user avatar
0 votes
1 answer
65 views

there is an image of quiz-app which should be displayed in the 60% of the screen but it is showing this. instead this is the auth component: import React from 'react'; import './Auth.css'; const Auth ...
Masoom Chowdhry's user avatar
-1 votes
1 answer
155 views

So like, im making an app using nextjs, where i take input from user (username password and email) from home page, save it to db via mongoose and then display it on other page named dashboard, im able ...
1211 - F - Aman Pandey's user avatar
-3 votes
1 answer
65 views

i am mern stack developer and i don't have any experience in this field. I have tried all method to solve the below problem but it gives error my template file is <!DOCTYPE html> <html lang=&...
GAMING WARRIOR's user avatar
0 votes
2 answers
2k views

I am developing a MERN stack web application which allows sellers to post their rooms on rent and for users to search and select the best room for them. Whenever I execute the functionality Post ...
Anish Khadtare's user avatar
1 vote
0 answers
261 views

I'm trying to set up an Express server with Socket.IO and deploy it on Netlify. My server was working fine on localhost, but I'm having trouble configuring it to work on Netlify. Here's what I have so ...
Bora Bey Sarikaya's user avatar
1 vote
1 answer
258 views

I have a full stack app with a React frontend and FastAPI (python) backend, which ultimately revolves around the user authenticating with Spotify and generating playlist data. Since the app and the ...
tprebenda's user avatar
  • 514
0 votes
2 answers
834 views

I have been trying to make my tailwind to work in my fullstack application, I am using Vite to work with React, Node.js and I want to use express also. This are my files so far For the component that ...
Emilio Parra's user avatar
1 vote
1 answer
99 views

I am refreshing my fullstack knowledge and have run into a problem with pulling in a single movie from the back end to the front end. When testing via postman I can get the movie without a problem and ...
TheCookie's user avatar
0 votes
1 answer
543 views

Running into a snag with my project setup—leveraging Clerk for authentication & Convex for the DB. Oddly, the second user's not getting added in Convex, even though Clerk's updating smoothly. Any ...
pavan suthar's user avatar
0 votes
1 answer
56 views

I am trying to write a dynamic filter for an API that uses SQLAlchemy (python). The front end will pass in optional arguments via query string to the backend and then the python backend should query ...
acarlseen's user avatar
0 votes
1 answer
34 views

I am making a full stack app with aws amplify. I am using app sync sdk because I was having issue with generating a aws amplify client. But now it's showing this problem with apollo client. Without ...
S-NaN-WaR's user avatar
0 votes
1 answer
33 views

I'm working on a layout that displays the educational qualification of a student. Here's the layout as per the prototype: The two TextButtons in the qualification-button class doesn't show the ...
Thej Kiran's user avatar
2 votes
1 answer
83 views

i'm trying to migrate my project from nodeJS to Deno. it has 2 part: the part that run on server to build, serve and test front-end app the front-end part in /app directory that will be build by ...
javad bat's user avatar
  • 5,388
0 votes
1 answer
49 views

I am doing a Next.js project with typescript and when I am in a profiel page "/en/profile" I am trrying to redirect for a "en/dashboard" the error occur that instead of redirecting ...
Martí Castell's user avatar
0 votes
2 answers
39 views

I am trying to get an input field to appear when the user selects 'other' from the drop down menu. It was only appearing when I first got on the add recipes page, but I changes a few lines and then it ...
H.Kruz's user avatar
  • 1
1 vote
0 answers
29 views

i created a design it works good in web view but makes a scroll vertically in mobile browser: web view : enter image description here mobile view : enter image description here The selfie circled ...
Osama Aslam's user avatar
0 votes
1 answer
51 views

Error Image Please see and help me. I want to create react app. but it's not working. the errors says that, npm ERR! code ENOENT npm ERR! syscall lstat npm ERR! path C:\Users\shubham\AppData\Roaming\...
Shubham Kumar's user avatar
1 vote
0 answers
92 views

I am new to PHP, I would like to develop a simple API in php that is to print out the login name and password in the page of the API php: <?php error_reporting(E_ALL); ini_set('display_errors', 1); ...
eric2023's user avatar
1 vote
0 answers
57 views

I'm attempting to install Wasp, a tool for building full-stack web applications with React & Node.js. The installation instructions recommend using the provided command: curl -sSL https://get.wasp-...
SAIF's user avatar
  • 11
1 vote
1 answer
95 views

`I have been following a code along project and I was going smooth until I bumped into this error where I have the exact same code as the working model but it would not work. It concerns the Mutate ...
Raghav Bhardwaj's user avatar
0 votes
0 answers
333 views

I am stuck in lesson 10 and I am unable to progress after the wrapper in my layout.js file in my next app My Layout.js : "use client" import { Inter } from "next/font/google" ...
tamermint's user avatar
1 vote
0 answers
73 views

So I tried to fetch the controller. useEffect(() => { displayEstates() }, []); async function displayEstates() { const response = await fetch('/api/estatedto', { headers: new ...
ParnayaBylochka's user avatar
0 votes
1 answer
2k views

index-d5Zm7UFq.js:1 Failed to load module script: Expected a JavaScript module script but the server responded with a MIME type of "text/html". Strict MIME type checking is enforced for ...
Sugam Adhikari's user avatar
0 votes
0 answers
237 views

I'm creating an app with the MERN stack, and I'm using Mongoose. Somehow it just refuses to connect to the database. My code: import {createRequire} from 'module'; const require = createRequire(import....
lcthaha's user avatar
-1 votes
1 answer
189 views

Guys it's really bothering me that i want to know how do e-commerce websites know that the customer made an order!! I mean like how do u receive that as devolper, I'm learning front-end and I'm ...
amir zekry's user avatar
0 votes
0 answers
48 views

I have a form that is using a ternary expression to decide if it is editing values or submitting new values. The adding values that are new is working via my postman client test, but edit is giving me ...
Tim M's user avatar
  • 11
-1 votes
1 answer
62 views

I want to make MERN project.I uses Redux Toolkit for state management. I will use authentication in my project but I got error while requesting server that is written myself.error is network error and ...
Ali Baran's user avatar
0 votes
2 answers
123 views

Here is my React code. I'm parsing a CSV I upload to fileData. I'm just trying to print the data in the console for now in my Backend. The CSV probably has around 350 rows. const [fileData, ...
JackD27's user avatar
  • 23
0 votes
1 answer
192 views

My OS is Linux-mint and I have a React typescript app. working with yarn (not npm) and docker containers for APISIX and front-end. Also, I have Webpack but without out Webpack configuration file. I ...
Itay Eylath's user avatar
-1 votes
1 answer
59 views

i have my react quill component, which returns something like this EXAMPLE: <p><br></p><p>fsdafsd</p><p>fsdfsda</p><p>fsdafsad</p and that is content,...
nika bedenashvili's user avatar

1
2 3 4 5
8