Getting Started π
Are you eager to start a TypeScript-based web project? Abi is the perfect solution to serve your resources, web services or applications in no time and without any hassle!
π Requirements
Section titled βπ RequirementsβCurrently, Abi
only works under:
β‘οΈ Installation
Section titled ββ‘οΈ InstallationβYou can install Abi
from NPM
or JSR
:
π§βπ» Usage
Section titled βπ§βπ» UsageβUse Abi
with your server runtime:
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;