Angular: Changes to the server?

Hello IT people. I've been thinking about redesigning my website using Angular. I've currently implemented it with PHP and a SQLite database. (I've never worked with Angular before—please provide understandable, beginner-friendly answers.) My questions: Can I control a DB? Is there an alternative to change data on the server via Angular e.g. DB / JSON…

SvelteKit: Why doesn't the link work?

<script lang="ts"></script> <div class="flex flex-row md:h-[2.8rem] bg-black-800"> <div class=""> <button class="text-white md:py-2"> Beta Version 🆕 Still in Development 🚧 Happy Halloween 🎃 </button> <a href="src/routes/policy" class="text-white md:py-2">Policy</a> </div> </div> Why doesn't linking work in SvelteKit?

Integrate NavBar on every subpage (web development)?

Hello, there are elements on almost every website that appear on almost every subpage. An example of this would be the navbar. It's everywhere on most websites. But how do you add this element to every subpage? Copying all the HTML, CSS, and JavaScript code onto every subpage would be extremely tedious. This task can…

Does a JavaScript framework always have to be structured like this?

I want to program my own js framework for game development and have also looked at a few others like Phaser.js or pixi.js, etc. However, they all start something like this: var game = new Frameworkname.forExampleGame( … ) Question 1: why are all frameworks, or rather all gamedev js frameworks that I have looked at,…

How do I organize files when I code a js framework?

So, I wanted to code a framework and then bundle the files into a frameworkname.js file with my tool. But I have no idea how to structure it. If you work with modules, do you then start the individual libraries in a main.js file? I've asked a similar question before, but it was about something…