My personal template for building web server using Go and ViteJS
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
Antonio De Lucreziis 876a47a6d3
Fixes a weird NodeJS bug
It looks like that from some version NodeJS decided to do localhost requests on IPv6 first instead of IPv4 https://github.com/nodejs/node/issues/40537, so we can't use "localhost" directly any more without changing everything to IPv6.
1 year ago
backend Initial commit 1 year ago
cmd Initial commit 1 year ago
frontend chore: Some fixes and removed old stuff 1 year ago
.gitignore Initial commit 1 year ago
Makefile Update Makefile 1 year ago
README.md Update README.md 1 year ago
go.mod chore: Some fixes and removed old stuff 1 year ago
go.sum Initial commit 1 year ago
package.json Initial commit 1 year ago
pnpm-lock.yaml Initial commit 1 year ago
vite.config.js Fixes a weird NodeJS bug 1 year ago

README.md

Go & ViteJS Boilerplate

This will repo is a template for a larger application based on ideas from https://slides.com/aziis98/go-and-vite-js, this uses the following technologies

  • The frontend is made using ViteJS and for now is just a SPA that uses https://github.com/preactjs/preact-router (I have a working prototype of a multi-page version with full integration between the dev-client and the server but its still a bit rough)

  • The backend is made using Go and https://github.com/gofiber/fiber. Fiber is very similar to ExpressJS and uses the fasthttp Go stack that should be a bit better that the Go default HTTP library.

Usage

Development

The following command will start the backend (by default on :4000) and the ViteJS development server (by default on :3000).

$ go run -v ./cmd/develop

Production

$ npm run build
$ go run -v ./cmd/server

# or just run...
$ make

Future

  • As sad before, polish the ViteJS plugin for the dev-server for server side rendering.

    • Define routes once in Go by just referencing files from frontend/pages folder (internally this works by serving a special route in the backend while developing that lists all routes to mount for the ViteJS server)

    • Javascript-less pages and view engine support (as before when ViteJS is asked to render a server-dynamic page it will first do its processing to the HTML file and then ask the backend to render just that page on demand)

    • Remove Preact by-default

  • Add SQLite by default and more boilerplate for the DB

  • Go now supports embedded files in the binary so this could actually be shipped to a single binary with all frontend assets bundled in