Embedding sveltekit in golang binaries
php editor Baicao will introduce to you an interesting technology today - embedding SvelteKit in golang binary files. With the continuous development of front-end technology, more and more frameworks and tools have emerged. As an emerging framework, SvelteKit provides faster loading speed and higher performance by building applications at compile time. This article will show you how to embed SvelteKit applications into golang binaries to achieve more convenient deployment and distribution. Let us find out together!
Question content
I'm trying to use embedd to serve a single binary file to include a sveltekit website. I use chi as my router. But I can't get it to work. I get one of these options below. From what I understand, the embedd all:
option ensures that files prefixed with _
are included. I also tried variations of the stripprefix
method in main v1: /uibuild/
or uibuild/
etc...
Can someone shine a light on it?
Sample Repository
- Directory listing, in my case "uibuild"
- There is a blank page at "/", but in the chrome console, a 404 error appears for nested files
- 404 appears on the homepage "/".
Thin configuration:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
|
main.go v1:
This will generate error 3.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
|
main.go v2:
This will give error 2.
1 2 3 4 5 6 7 8 9 |
|
File structure:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
|
Workaround
Frustratingly, your "main.go v2" can only add a single character. You are using:
r.handle("/", http.fileserver(http.fs(static)))
From the documentation:
func (mx *mux) handle(pattern string, handler http.handler)
Each route method accepts a url pattern and handler chain. The url pattern supports named parameters (i.e. /users/{userid}) and wildcards (i.e. /admin/). You can obtain url parameters at runtime by calling chi.urlparam(r, "userid") (for named parameters) and chi.urlparam(r, "") (for wildcard parameters).
So you pass in "/" as "pattern"; this will match /
but nothing else; fix using:
1 2 3 |
|
I tested this with one of my lite apps and it worked fine. One improvement you might want to consider is to redirect any requests for files that don't exist to /
(otherwise the page won't load if the user bookmarks it with the path). See this answer for information.
In addition to the above - to demonstrate what I said in the comments, add <a href="/about">about</a>
to ui /src/routes/ page.svelte
and rebuild (both svelte and then go to the application). You will then be able to navigate to the about
page (load the home page first, then click "About"). This is handled by the client router (so you probably won't see any requests to the go server). See the answer linked to
for information on how to make it work when accessing the page directly (e.g. /about).
Here is a quick (and somewhat hacky) example that will serve the required bits from the embedded file system and return the main index.html
for all other requests (so that the svelte router can display all required page).
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 |
|
The above is the detailed content of Embedding sveltekit in golang binaries. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



Yes, H5 page production is an important implementation method for front-end development, involving core technologies such as HTML, CSS and JavaScript. Developers build dynamic and powerful H5 pages by cleverly combining these technologies, such as using the <canvas> tag to draw graphics or using JavaScript to control interaction behavior.

Real-time Bitcoin USD Price Factors that affect Bitcoin price Indicators for predicting future Bitcoin prices Here are some key information about the price of Bitcoin in 2018-2024:

The method of customizing resize symbols in CSS is unified with background colors. In daily development, we often encounter situations where we need to customize user interface details, such as adjusting...

Regarding the reasons and solutions for misaligned display of inline-block elements. When writing web page layout, we often encounter some seemingly strange display problems. Compare...

How to use JavaScript or CSS to control the top and end of the page in the browser's printing settings. In the browser's printing settings, there is an option to control whether the display is...

How to achieve the 45-degree curve effect of segmenter? In the process of implementing the segmenter, how to make the right border turn into a 45-degree curve when clicking the left button, and the point...

Tips for Implementing Segmenter Effects In user interface design, segmenter is a common navigation element, especially in mobile applications and responsive web pages. ...

The problem of container opening due to excessive omission of text under Flex layout and solutions are used...
