Skip to content

Getting Started

ItzNotABug edited this page May 3, 2024 · 1 revision

Install from NPM -

npm install @itznotabug/appexpress

Initialize

Create a new instance of AppExpress:

import AppExpress from '@itznotabug/appexpress';

const appExpress = new AppExpress();

Important: Now attach it to the function entrypoint :

export default async (context) => await appExpress.attach(context);