Skip to main content
Filter by
Sorted by
Tagged with
Best practices
0 votes
3 replies
31 views

We have a nuxt.js project which is an ecommerce site. We load the products page with first 100 products as SSR. after that we load other products as we needed from the client side using an API call. ...
margherita pizza's user avatar
Best practices
0 votes
0 replies
21 views

We follow this article to write all our API calls https://medium.com/@luizzappa/nuxt-3-repository-pattern-organising-and-managing-your-calls-to-apis-with-typescript-acd563a4e046 so we can fetch a ...
td2thinh's user avatar
Advice
2 votes
0 replies
46 views

I’ve been working as a frontend developer for around 3 years, but honestly, I feel stuck. My current company doesn’t really follow standard software engineering practices, and the work has become ...
cybertron's user avatar
Best practices
1 vote
1 replies
34 views

I'm building a Nuxt 3 application using a feature-based architecture inspired by Domain-Driven Design. Each feature is meant to be fully isolated, with its own components, state, API layer, and ...
KobiM1's user avatar
  • 81
-1 votes
0 answers
38 views

I am trying create a dynamic classes using BEM along with the css mixins. .card--sty-1{ &__circle{} &__link{}; } .card--sty-2{ &__circle{} &__link{}; } ...for --sty-[n ...
Tejas_More's user avatar
-2 votes
0 answers
37 views

import dagre from 'dagre'; import { Node, Edge, Position } from 'reactflow'; export default function layoutDAG( nodes: Node[], edges: Edge[], dagType: 'T' | 'I' | 'D' ): { nodes: Node[]; edges: ...
Sindhu Kumari's user avatar
0 votes
1 answer
101 views

I built a sort of timeline with a grid design and horizontal scrolling. Dates are in the center row, while a picture is in 1st and some legend in 3rd. The aim is to display pictures and legends only ...
Nicolas Bège's user avatar
1 vote
1 answer
288 views

I'm exploring the new MCP (Model Context Protocol) server introduced in Next.js 16, and I’d like to understand how to properly enable and use it in a development environment. What I’ve done so far: ...
Amirhossein Modirkhazeni's user avatar
0 votes
1 answer
120 views

I'm working in astro which uses vite as its bundler, don't know if that helps. So basically I have p5.js as a dependency for a sketch I demonstrate on my portfolio site, using the library from npm, ...
HyperChromatica's user avatar
0 votes
1 answer
60 views

I’m using Inertia.js with Vue 3, and I want to show a success message when a form is submitted successfully. In my controller I have: public function store(Request $request) { $validated = $...
WILLIANS HERIBERTO NAVAS REYES's user avatar
2 votes
1 answer
72 views

I have made a Tauri app. This app uses C in the backend. The C file contains multiple functions. Some functions use the sudo command to get data. I have started this C file in the Tauri app by writing ...
user27793975's user avatar
2 votes
1 answer
109 views

I’m working on a project using Next.js + next-intl + Tailwind CSS. For English I’m using the Poppins font, and for Arabic I’m using Tajawal. The problem is that when switching to Arabic (RTL), the ...
Abd elmoumaine Nessah's user avatar
4 votes
1 answer
107 views

I'm developing a web application with a text-to-speech feature. Users can select text on the page and then click a "Play text to speech" button to have it read aloud. This works perfectly on ...
user31559076's user avatar
0 votes
1 answer
105 views

I'm trying to use a element that stays fixed on the screen, so I’ve applied: dialog { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; margin: 0; overflow: auto; } On ...
Bear Bile Farming is Torture's user avatar
0 votes
0 answers
114 views

I'm integrating the Mercado Pago Payment Brick in my Vue 3 / TypeScript project, and I'm facing an issue: whenever I try to submit the payment, the Brick returns the error missing_payment_information ...
Diego Orozco's user avatar
0 votes
0 answers
55 views

This is my onMounted call and the loadTripAdvanceDetail function here is responsible for populating the form for edit operations however it makes my form dirty and gives me the unsaved changes dialog ...
Saksham Khurana's user avatar
-1 votes
2 answers
117 views

Context I’m using React Hook Form together with React Query. The parent component fetches data with a query, derives defaultValues, and passes them into the form. Parent component: export const ...
Andrey Rafalskyi's user avatar
2 votes
0 answers
83 views

I'm learning about DI-based interceptors in Angular 20. When I ran my Angular app, the home page (that contains API to get products) was loading for a long time and I received no response on the ...
Intern developer's user avatar
1 vote
2 answers
256 views

I am creating a horizontal logo slider with multiple tracks.My goal is: Even-numbered tracks should animate logos to the right. Odd-numbered tracks should animate logos to the left. Whenever I add new ...
Vortex Code Developer's user avatar
0 votes
0 answers
48 views

i started using framer-motion 3 days ago, i tried making a dropdown menu which has a dropiing animation, the menu contains a list that has a slide animation, it slides when changing the menu as a ...
yubi 's user avatar
0 votes
1 answer
62 views

I have multiple projects set up in a monorepo. I load all of them and browse out to Shared to load the initial layout. However, when I click a link to go to a different zone/app Customer, I receive ...
Chris's user avatar
  • 371
0 votes
1 answer
59 views

I have set up an api backend using FastAPI. Backend testing has been done already. But I don't know how to test the frontend correctly which is usign the api. Because I want at least one test that is ...
Clyde's user avatar
  • 62
-4 votes
1 answer
117 views

I'm trying to implement a signup form and using the react-toastify package to show success and error messages. While the toast.error function works perfectly, the toast.success function does not ...
Anwar Ali's user avatar
1 vote
2 answers
110 views

I am currently new to Tailwind CSS and figuring out why my login component CSS classes are also applied to every other component as well, I've tried scoping this CSS classes with modules as well but ...
Neel Chavan's user avatar
0 votes
1 answer
51 views

I tried to make my Android app in Kotlin with Holo theme My code: activity_main.xml: <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:...
Zuza Zuzev's user avatar

1
2 3 4 5
290