Skip to content
@FartLabs

FartLabs

Software solutions out the wazoo!

Discord invite

FartLabs - Software solutions out the wazoo 🧪

We develop software out the wazoo!

Our projects are designed to be fun, useful, and educational. We're always looking for new contributors and collaborators, so feel free to reach out if you're interested in joining the fun!

Libraries

Maintaining libraries on jsr.io - https://jsr.io/@fartlabs

More projects

Quick examples

function Cat() {
  return { animals: ["🐈"] };
}

function Dog() {
  return { animals: ["🐕"] };
}

const data = (
  <>
    <Cat />
    <Dog />
  </>
);

console.log(data); // { animals: ["🐈", "🐕"] }

Curious about jsonx? Learn more...

import { a } from "@fartlabs/ht";

const html = a({ href: "https://jsr.io/@fartlabs/ht" }, "@fartlabs/ht");

Deno.writeTextFileSync("index.html", html);
import { A, BODY, H1, P } from "@fartlabs/htx";

const html = (
  <BODY>
    <H1>Hello, World!</H1>
    <P>This is a paragraph.</P>
    <A href="https://jsr.io/@fartlabs/htx">@fartlabs/htx</A>
  </BODY>
);

Deno.writeTextFileSync("index.html", html);
import { Router } from "@fartlabs/rt";

const router = new Router()
  .get("/", () => new Response("Hello, World!"))
  .default(() => new Response("Not found", { status: 404 }));

Deno.serve((request) => router.fetch(request));
import { Get, Router } from "@fartlabs/rtx";

const router = (
  <Router default={() => new Response("Not found", { status: 404 })}>
    <Get
      pattern="/"
      handle={() =>
        new Response("Hello, World!")}
    />
  </Router>
);

Deno.serve((request) => router.fetch(request));

Get involved

We welcome contributions! Here's how:

  • Raise an issue: Report bugs or suggest new features.
  • Submit a pull request: Directly improve our code.
  • Join our community: Discussions are open for questions and collaborations.

Community

Reach out to us on Discord: https://go.fart.tools/chat.

License

See the LICENSE file in each repository for details.


Maintained with ❤️ at FartLabs 🧪

Popular repositories Loading

  1. deno_blocks deno_blocks Public

    🧩 Blockly IDE integration with Deno Subhosting for the Deno Subhosting Hackathon https://deno.com/blog/subhosting-hackathon

    TypeScript 6 1

  2. fartlabs.org fartlabs.org Public

    🧪 Official website of FartLabs.

    TypeScript 6 2

  3. hackathon hackathon Public

    This two-week hackathon is your chance to create something extraordinary and connect with a vibrant community of builders.

    4

  4. pixel-planet pixel-planet Public

    Procedurally generated pixel art planet component library for React.

    TypeScript 4

  5. jsonx jsonx Public

    JSX runtime and compiler for composing JSON data.

    TypeScript 3

  6. rt rt Public

    Minimal HTTP router library based on the URLPattern API.

    TypeScript 3 1

Repositories

Showing 10 of 38 repositories
  • go-protocol Public

    Data structure for resolving shortlinks with internal redirects.

    FartLabs/go-protocol’s past year of commit activity
    Makefile 0 0 3 0 Updated Apr 19, 2026
  • ht Public

    An HTML rendering library.

    FartLabs/ht’s past year of commit activity
    TypeScript 0 WTFPL 0 3 0 Updated Apr 19, 2026
  • webring Public

    A webring for FartLabs members and friends. Submit a PR to join.

    FartLabs/webring’s past year of commit activity
    HTML 1 1 1 0 Updated Apr 17, 2026
  • libwebring Public archive

    A libwebring-compatible webring for FartLabs members.

    FartLabs/libwebring’s past year of commit activity
    JavaScript 0 0 0 0 Updated Apr 15, 2026
  • pixel-planet Public

    Procedurally generated pixel art planet component library for React.

    FartLabs/pixel-planet’s past year of commit activity
    TypeScript 4 MIT 0 3 2 Updated Apr 12, 2026
  • fly-on-the-wall Public

    Local-first AI tool for recording, transcribing, and summarizing meetings.

    FartLabs/fly-on-the-wall’s past year of commit activity
    TypeScript 2 0 2 0 Updated Apr 1, 2026
  • go Public

    Go-link shortening service and IETF standard.

    FartLabs/go’s past year of commit activity
    TypeScript 2 WTFPL 0 2 0 Updated Mar 26, 2026
  • fart Public

    🌫 Program that generates type definitions in multiple languages.

    FartLabs/fart’s past year of commit activity
    TypeScript 0 MIT 0 11 0 Updated Mar 17, 2026
  • jsonx Public

    JSX runtime and compiler for composing JSON data.

    FartLabs/jsonx’s past year of commit activity
    TypeScript 3 WTFPL 0 3 0 Updated Mar 16, 2026
  • invites Public

    Standalone API, SDK, and web console for managing invite codes.

    FartLabs/invites’s past year of commit activity
    HTML 0 WTFPL 1 0 0 Updated Feb 13, 2026

People

This organization has no public members. You must be a member to see who’s a part of this organization.

Top languages

Loading…

Most used topics

Loading…