Table of Contents
Question content
Workaround
Home Backend Development Golang Embedding sveltekit in golang binaries

Embedding sveltekit in golang binaries

Feb 09, 2024 pm 05:36 PM
overflow

在 golang 二进制文件中嵌入 sveltekit

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

  1. Directory listing, in my case "uibuild"
  2. There is a blank page at "/", but in the chrome console, a 404 error appears for nested files
  3. 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

import preprocess from "svelte-preprocess";

import adapter from "@sveltejs/adapter-static";

 

/** @type {import('@sveltejs/kit').config} */

const config = {

  kit: {

    adapter: adapter({

      pages: "./../server/uibuild",

      assets: "./../server/uibuild",

      fallback: "index.html",

    }),

  },

 

  preprocess: [

    preprocess({

      postcss: true,

    }),

  ],

};

 

export default config;

Copy after login

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

package main

 

import (

    "embed"

    "log"

    "net/http"

 

    chi "github.com/go-chi/chi/v5"

)

 

//go:embed all:uibuild

var sveltestatic embed.fs

 

func main() {

 

    r := chi.newrouter()

 

    r.handle("/", http.stripprefix("/uibuild", http.fileserver(http.fs(sveltestatic))))

 

    log.fatal(http.listenandserve(":8082", r))

}

Copy after login

main.go v2:

This will give error 2.

1

2

3

4

5

6

7

8

9

static, err := fs.sub(sveltestatic, "uibuild")

    if err != nil {

        panic(err)

    }

 

r := chi.newrouter()

r.handle("/", http.fileserver(http.fs(static)))

 

log.fatal(http.listenandserve(":8082", r))

Copy after login

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

.

├── go.mod

├── go.sum

├── main.go

└── uibuild

    ├── _app

    │   ├── immutable

    │   │   ├── assets

    │   │   │   ├── 0.d7cb9c3b.css

    │   │   │   └── _layout.d7cb9c3b.css

    │   │   ├── chunks

    │   │   │   ├── index.6dba6488.js

    │   │   │   └── singletons.b716dd01.js

    │   │   ├── entry

    │   │   │   ├── app.c5e2a2d5.js

    │   │   │   └── start.58733315.js

    │   │   └── nodes

    │   │       ├── 0.ba05e72f.js

    │   │       ├── 1.f4999e32.js

    │   │       └── 2.ad52e74a.js

    │   └── version.json

    ├── favicon.png

    └── index.html

Copy after login

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

r.handle("/*", http.fileserver(http.fs(static)))

// or

r.mount("/", http.fileserver(http.fs(static)))

Copy after login

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

package main

 

import (

    "embed"

    "fmt"

    "io/fs"

    "log"

    "net/http"

 

    "github.com/go-chi/chi/v5"

)

 

//go:embed all:uibuild

var svelteStatic embed.FS

 

func main() {

 

    s, err := fs.Sub(svelteStatic, "uibuild")

    if err != nil {

        panic(err)

    }

 

    staticServer := http.FileServer(http.FS(s))

 

    r := chi.NewRouter()

 

    r.Handle("/", staticServer) // Not really needed (as the default will pick this up)

    r.Handle("/_app/*", staticServer)      // Need to serve any app components from the embedded files

    r.Handle("/favicon.png", staticServer) // Also serve favicon :-)

 

    r.HandleFunc("/*", func(w http.ResponseWriter, r *http.Request) { // Everything else returns the index

        r.URL.Path = "/" // Replace the request path

        staticServer.ServeHTTP(w, r)

    })

 

    fmt.Println("Running on port: 8082")

    log.Fatal(http.ListenAndServe(":8082", r))

}

Copy after login

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!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

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

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Is H5 page production a front-end development? Is H5 page production a front-end development? Apr 05, 2025 pm 11:42 PM

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 &lt;canvas&gt; tag to draw graphics or using JavaScript to control interaction behavior.

The latest price of Bitcoin in 2018-2024 USD The latest price of Bitcoin in 2018-2024 USD Feb 15, 2025 pm 07:12 PM

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:

How to customize the resize symbol through CSS and make it uniform with the background color? How to customize the resize symbol through CSS and make it uniform with the background color? Apr 05, 2025 pm 02:30 PM

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...

Why are the inline-block elements misaligned? How to solve this problem? Why are the inline-block elements misaligned? How to solve this problem? Apr 04, 2025 pm 10:39 PM

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 control the top and end of pages in browser printing settings through JavaScript or CSS? How to control the top and end of pages in browser printing settings through JavaScript or CSS? Apr 05, 2025 pm 10:39 PM

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 use the clip-path attribute of CSS to achieve the 45-degree curve effect of segmenter? How to use the clip-path attribute of CSS to achieve the 45-degree curve effect of segmenter? Apr 04, 2025 pm 11:45 PM

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...

How to achieve segmentation effect with 45 degree curve border? How to achieve segmentation effect with 45 degree curve border? Apr 04, 2025 pm 11:48 PM

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

The text under Flex layout is omitted but the container is opened? How to solve it? The text under Flex layout is omitted but the container is opened? How to solve it? Apr 05, 2025 pm 11:00 PM

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

See all articles