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
:
npm install abi.js@latest
From JSR
:
npx jsr add @abi-js/abi
From NPM
:
yarn add abi.js
From JSR
:
yarn dlx jsr add @abi-js/abi
From NPM
:
pnpm add abi.js
From JSR
:
pnpm dlx jsr add @abi-js/abi
From NPM
:
bun install abi.js
From JSR
:
bunx jsr add @abi-js/abi
From NPM
:
deno install npm:abi.js
From JSR
:
deno 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;
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;