Warning: Docs are currently under development, join us at discord.
Logo
Warning: Vixeny is currently in Alpha stage. We appreciate your feedback!

Welcome to Vixeny!

Introducing Vixeny: A New Era in Web Development

  • Unmatched Speed: Experience the fastest framework in the Deno ecosystem.
  • DRY and Functional: Designed with the principles of DRY (Don’t Repeat Yourself) and advanced functional programming, including naitve mocking and code isolation.
  • Zero-Dependency Architecture: Lean and efficient, with a focus on simplicity and performance.
  • Native Plugin Support: Enhance functionality with ease using native plugins.
  • Robust Security: Predictable and deterministc.
  • Advanced Type Checking: Ensures safe, predictable code.
  • Versatile Paradigms: Supports functional programming and other paradigms in a cohesive manner.
  • Object-Oriented: Facilitates easy code manipulation and maintenance.
  • Test-Friendly: Framework designed to be easily testable, end to end.
  • Future-Proof: Stay ahead in web development with Vixeny’s innovative features.

Start your journey with Vixeny – redefine efficiency and innovation in web development.

Quick start

Easy testing

const baseName = globalOptions.hasName;
const router = wrap.testRequests();

test("Checking in `/`", async () => {
  //base root
  expect(
    await router(new Request(baseName))
      .then((res) => res.status),
  ).toStrictEqual(200);
});

Coming soon …