UNPKG

create-abi

Version:

Interactive CLI for create Abi.js projects.

8 lines (5 loc) 183 B
import { Abi } from 'npm:abi.js'; const abi = new Abi() .get('/', () => 'Welcome to Abi.js!') .get('/hello(/:name)?', (name = 'World') => `Hello ${name}!`); export default abi;