This is me.l-m.dev, a complete upgrade from an older linear blogging system.
It has been built from the ground up in V using a high performance custom made barebones HTTP web server/framework. This is a self contained site, with zero JavaScript.
How did I do it?
A large amount of templating, messing around with sqlite3
, a single threaded picoev
event loop, HTTP spec caching/etags, lots of regex, and a lot of thinking.
Three Undocumented Projects And The Three Month Hiatus
Introduction to me.l-m.dev.
Shipping 700KiBs of compressed HTML isn't viable?
Implementing pagination and a navbar for me.l-m.dev.
I worked hard to make a nice interface, one which is fast and dynamic, and uses zero JavaScript. I relied a lot on the existing HTTP standard + URLs, to jump you to specific parts of the page and use HTML forms to change content.
Jump links using /?p=00000000##
are used extensively by the backend to route the client.
Proper configurable pagination is supported.
YouTube and Spotify embeds are by design, horrible offenders in the amount of JavaScript they ship to clients to perform tracking.
The backend only needs to scrape Spotify servers once, using regex to get the metadata it needs. All media YouTube thumbnails and Spotify media are saved to the primary database for further reads after that.
A space separated list of tags can be applied to a post. Inside the search tab at the very top, you can search for these tags and the content within.
The search functionality uses a case insensitive glob query.
*.wasm
test/helo.wasm
file.wasm
stas*compiler
stas COMPILER
stas#0000000comPiler
stas is my programming language i implemented in my first compiler
Building with V is easy, simply have the V compiler installed on your system and run v .
in the root directory of the repository.
You can get a copy of the v compiler here.
The server expects a few things in order to run:
./make_init_files.sh
to create the following files:
data.sqlite
with correct schemawal.log
for loggingbackup/
folder for backupsSECRET
envvar should be set, and is used in https://<url>/auth
.base_url
const in main.v
should be changed to point to your website's URL.PORT
envvar can be set, but defaults to port 8080.