Skip to content

Next-gen framework for modern web apps

Build fast and type-safe web applications in no time with a free, open-source, and easy-to-use framework.

Installation

From NPM:

Terminal window
npm install abi.js@latest

From JSR:

Terminal window
npx jsr add @abi-js/abi

Usage

import { Abi } from "abi.js";
const abi = new Abi();
abi.get('', 'Welcome to Abi.js!');
abi.get(':name', (name: string) => `Hello ${name}!`);
export default abi;