<aside> 💡

Checkout FullStacked v1 page: https://v1.fullstacked.org/

To learn more about the vision behind these updates: Read the Announcement ↗

</aside>

May 22, 2026

I manage to bring back Stytch to the FullStacked Cloud authentication service! Which brings OAuth from Github, Apple, Microsoft and Google (I’ll add passkey soon enough). Also, it allows the management of multiple users so I can now go forward with providing services. Although, my next milestone is proxying http requests through the FullStacked Tunnel. This way, we’ll be able to fetch data/objects through secure tunnels and then finally access git repos with that proxy. With that, creating software and sharing it will become extremely simple through the FullStacked Cloud services and always run locally in the FullStacked environment.

As soon as I onboard the first few couple users, I will set a release date for FullStacked v1. I expect by the end of summer.

Screenshot 2026-05-22 at 10.31.09 AM.png

May 14, 2026

Deployed the first live version of the FullStacked Auth service https://auth.fullstacked.cloud/ (https://auth.fullstacked.cloud). We now have Auth and Tunnel services in alpha phase being tested out daily. This is all part of the FullStacked Cloud Platform.

I also released the Linux binary npmjs packages

May 7, 2026

Released a new version with a bunch of fixes, especially removed as much sync call as possible in the shell. Also fixed the way the core binary is found by node, so we can now install fullstacked globally and use it a command.

npm i -g fullstacked@alpha

I am looking into starting the auth feature/command to trigger the native auth browser popup on all different platforms.

ie: https://developer.apple.com/documentation/authenticationservices/aswebauthenticationsession

April 21, 2026

Been working a whole lot on FullStacked’s pitch. I did make some very nice update on the tunnel module. It now generates a host name to allow to pass the return value of register directly to the driver client.

import { Client } from "pg";
import { register } from "fullstacked/tunnel";

const client = new Client({
  host: await register({
    host: "tunnel.fullstacked.cloud",
    authorization: "secret-token"
  }),
  user: "username",
  password: "password",
  database: "database",
});

await client.connect();

Will try to publish a new version soon.

April 14, 2026