faastjs
Version:
Serverless batch computing made simple.
22 lines (21 loc) • 1.29 kB
TypeScript
/**
* Faast.js transforms ordinary JavaScript modules into serverless cloud
* functions that can run on AWS Lambda.
*
* The main entry point to faast.js is the {@link faast} function, which returns
* an object that implements the {@link FaastModule} interface. The most common
* options are {@link CommonOptions}. Using faast.js requires writing two
* modules, one containing the functions to upload to the cloud, and the other
* that invokes faast.js and calls the resulting cloud functions.
* @packageDocumentation
*/
export { AwsClientFactory, AwsOptions, AwsRegion } from "./src/aws/aws-faast";
export { PersistentCache } from "./src/cache";
export { CostAnalyzer, CostMetric, CostSnapshot } from "./src/cost";
export { FaastError, FaastErrorNames } from "./src/error";
export { Async, AsyncDetail, AwsFaastModule, Detail, FaastModule, FaastModuleProxy, FunctionStatsEvent, LocalFaastModule, ProxyModule, ProxyModuleDetail, faast, faastAws, faastLocal, providers } from "./src/faast";
export { LocalOptions } from "./src/local/local-faast";
export { log } from "./src/log";
export { CleanupOptions, CommonOptions, FunctionStats, IncludeOption, Provider } from "./src/provider";
export { Statistics } from "./src/shared";
export { Limits, throttle } from "./src/throttle";