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
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;
import { Abi } from "@abi-js/abi";
const abi = new Abi();
abi.get('', 'Welcome to Abi.js!');abi.get(':name', (name: string) => `Hello ${name}!`);
export default abi;