@faasjs/server
v4.5.3
Published
FaasJS's server module.
Downloads
2,154
Readme
@faasjs/server
FaasJS's server module.
Install
# If you are using bun, tsx is not required.
npm install @faasjs/server tsx
Routing
Static routing:
/
->index.func.ts
orindex.func.tsx
/path
->path.func.ts
orpath.func.tsx
orpath/index.func.ts
orpath/index.func.tsx
Dynamic routing:
/*
->default.func.ts
ordefault.func.tsx
/path/*
->path/default.func.ts
orpath/default.func.tsx