FaasJS
Home
  • Guide
  • Documents
  • Starter Template
  • Changelog
  • Ecosystem

    • VS Code Plugin
    • Docker Images
  • Github
  • Contributing
  • Sponsor
  • Security
  • English
  • 简体中文
Home
  • Guide
  • Documents
  • Starter Template
  • Changelog
  • Ecosystem

    • VS Code Plugin
    • Docker Images
  • Github
  • Contributing
  • Sponsor
  • Security
  • English
  • 简体中文
  • Getting Started
  • FaasJS Request Specifications
  • Dockerize FaasJS Application

Getting Started

Quick Start

Start with Command Line

# use npm
npx create-faas-app --name faasjs

# use bun
bunx create-faas-app --name faasjs

Start with Codespace

FaasJS Stater

File Structure

faas.yaml

This is the configuration file for FaasJS, which records the configuration items of cloud service providers and plugins.

*.func.ts

This is the cloud function file. In FaasJS, all cloud function files must end with .func.ts.

*.test.ts

This is the unit test file. In FaasJS, all unit test files must end with .test.ts.

Last Updated:: 4/27/25, 5:45 AM
Next
FaasJS Request Specifications