Documentation
¶
Index ¶
- func NewNodejsFunction_Override(n NodejsFunction, scope constructs.Construct, id *string, ...)
- func NodejsFunction_ClassifyVersionProperty(propertyName *string, locked *bool)
- func NodejsFunction_FromFunctionArn(scope constructs.Construct, id *string, functionArn *string) awslambda.IFunction
- func NodejsFunction_FromFunctionAttributes(scope constructs.Construct, id *string, attrs *awslambda.FunctionAttributes) awslambda.IFunction
- func NodejsFunction_FromFunctionName(scope constructs.Construct, id *string, functionName *string) awslambda.IFunction
- func NodejsFunction_IsConstruct(x interface{}) *bool
- func NodejsFunction_IsResource(construct constructs.IConstruct) *bool
- func NodejsFunction_MetricAll(metricName *string, props *awscloudwatch.MetricOptions) awscloudwatch.Metric
- func NodejsFunction_MetricAllConcurrentExecutions(props *awscloudwatch.MetricOptions) awscloudwatch.Metric
- func NodejsFunction_MetricAllDuration(props *awscloudwatch.MetricOptions) awscloudwatch.Metric
- func NodejsFunction_MetricAllErrors(props *awscloudwatch.MetricOptions) awscloudwatch.Metric
- func NodejsFunction_MetricAllInvocations(props *awscloudwatch.MetricOptions) awscloudwatch.Metric
- func NodejsFunction_MetricAllThrottles(props *awscloudwatch.MetricOptions) awscloudwatch.Metric
- func NodejsFunction_MetricAllUnreservedConcurrentExecutions(props *awscloudwatch.MetricOptions) awscloudwatch.Metric
- type BundlingOptions
- type Charset
- type ICommandHooks
- type LogLevel
- type NodejsFunction
- type NodejsFunctionProps
- type OutputFormat
- type SourceMapMode
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func NewNodejsFunction_Override ¶
func NewNodejsFunction_Override(n NodejsFunction, scope constructs.Construct, id *string, props *NodejsFunctionProps)
func NodejsFunction_ClassifyVersionProperty ¶
Record whether specific properties in the `AWS::Lambda::Function` resource should also be associated to the Version resource.
See 'currentVersion' section in the module README for more details.
func NodejsFunction_FromFunctionArn ¶
func NodejsFunction_FromFunctionArn(scope constructs.Construct, id *string, functionArn *string) awslambda.IFunction
Import a lambda function into the CDK using its ARN.
func NodejsFunction_FromFunctionAttributes ¶
func NodejsFunction_FromFunctionAttributes(scope constructs.Construct, id *string, attrs *awslambda.FunctionAttributes) awslambda.IFunction
Creates a Lambda function object which represents a function not defined within this stack.
func NodejsFunction_FromFunctionName ¶ added in v2.14.0
func NodejsFunction_FromFunctionName(scope constructs.Construct, id *string, functionName *string) awslambda.IFunction
Import a lambda function into the CDK using its name.
func NodejsFunction_IsConstruct ¶
func NodejsFunction_IsConstruct(x interface{}) *bool
Checks if `x` is a construct.
Returns: true if `x` is an object created from a class which extends `Construct`. Deprecated: use `x instanceof Construct` instead
func NodejsFunction_IsResource ¶
func NodejsFunction_IsResource(construct constructs.IConstruct) *bool
Check whether the given construct is a Resource.
func NodejsFunction_MetricAll ¶
func NodejsFunction_MetricAll(metricName *string, props *awscloudwatch.MetricOptions) awscloudwatch.Metric
Return the given named metric for this Lambda.
func NodejsFunction_MetricAllConcurrentExecutions ¶
func NodejsFunction_MetricAllConcurrentExecutions(props *awscloudwatch.MetricOptions) awscloudwatch.Metric
Metric for the number of concurrent executions across all Lambdas.
func NodejsFunction_MetricAllDuration ¶
func NodejsFunction_MetricAllDuration(props *awscloudwatch.MetricOptions) awscloudwatch.Metric
Metric for the Duration executing all Lambdas.
func NodejsFunction_MetricAllErrors ¶
func NodejsFunction_MetricAllErrors(props *awscloudwatch.MetricOptions) awscloudwatch.Metric
Metric for the number of Errors executing all Lambdas.
func NodejsFunction_MetricAllInvocations ¶
func NodejsFunction_MetricAllInvocations(props *awscloudwatch.MetricOptions) awscloudwatch.Metric
Metric for the number of invocations of all Lambdas.
func NodejsFunction_MetricAllThrottles ¶
func NodejsFunction_MetricAllThrottles(props *awscloudwatch.MetricOptions) awscloudwatch.Metric
Metric for the number of throttled invocations of all Lambdas.
func NodejsFunction_MetricAllUnreservedConcurrentExecutions ¶
func NodejsFunction_MetricAllUnreservedConcurrentExecutions(props *awscloudwatch.MetricOptions) awscloudwatch.Metric
Metric for the number of unreserved concurrent executions across all Lambdas.
Types ¶
type BundlingOptions ¶
type BundlingOptions struct {
// Specify a custom hash for this asset.
//
// For consistency, this custom hash will
// be SHA256 hashed and encoded as hex. The resulting hash will be the asset
// hash.
//
// NOTE: the hash is used in order to identify a specific revision of the asset, and
// used for optimizing and caching deployment activities related to this asset such as
// packaging, uploading to Amazon S3, etc. If you chose to customize the hash, you will
// need to make sure it is updated every time the asset changes, or otherwise it is
// possible that some deployments will not be invalidated.
AssetHash *string `json:"assetHash" yaml:"assetHash"`
// Use this to insert an arbitrary string at the beginning of generated JavaScript files.
//
// This is similar to footer which inserts at the end instead of the beginning.
//
// This is commonly used to insert comments:
Banner *string `json:"banner" yaml:"banner"`
// Build arguments to pass when building the bundling image.
BuildArgs *map[string]*string `json:"buildArgs" yaml:"buildArgs"`
// The charset to use for esbuild's output.
//
// By default esbuild's output is ASCII-only. Any non-ASCII characters are escaped
// using backslash escape sequences. Using escape sequences makes the generated output
// slightly bigger, and also makes it harder to read. If you would like for esbuild to print
// the original characters without using escape sequences, use `Charset.UTF8`.
// See: https://esbuild.github.io/api/#charset
//
Charset Charset `json:"charset" yaml:"charset"`
// Command hooks.
CommandHooks ICommandHooks `json:"commandHooks" yaml:"commandHooks"`
// Replace global identifiers with constant expressions.
//
// For example, `{ 'process.env.DEBUG': 'true' }`.
//
// Another example, `{ 'process.env.API_KEY': JSON.stringify('xxx-xxxx-xxx') }`.
Define *map[string]*string `json:"define" yaml:"define"`
// A custom bundling Docker image.
//
// This image should have esbuild installed globally. If you plan to use `nodeModules`
// it should also have `npm` or `yarn` depending on the lock file you're using.
//
// See https://github.com/aws/aws-cdk/blob/master/packages/%40aws-cdk/aws-lambda-nodejs/lib/Dockerfile
// for the default image provided by @aws-cdk/aws-lambda-nodejs.
DockerImage awscdk.DockerImage `json:"dockerImage" yaml:"dockerImage"`
// Environment variables defined when bundling runs.
Environment *map[string]*string `json:"environment" yaml:"environment"`
// Build arguments to pass into esbuild.
//
// For example, to add the [--log-limit](https://esbuild.github.io/api/#log-limit) flag:
//
// “`text
// new NodejsFunction(scope, id, {
// ...
// bundling: {
// esbuildArgs: {
// "--log-limit": "0",
// }
// }
// });
// “`
EsbuildArgs *map[string]interface{} `json:"esbuildArgs" yaml:"esbuildArgs"`
// The version of esbuild to use when running in a Docker container.
EsbuildVersion *string `json:"esbuildVersion" yaml:"esbuildVersion"`
// A list of modules that should be considered as externals (already available in the runtime).
ExternalModules *[]*string `json:"externalModules" yaml:"externalModules"`
//
// This is similar to banner which inserts at the beginning instead of the end.
//
// This is commonly used to insert comments
Footer *string `json:"footer" yaml:"footer"`
// Force bundling in a Docker container even if local bundling is possible.
//
// This is useful if your function relies on node modules
// that should be installed (`nodeModules`) in a Lambda compatible
// environment.
ForceDockerBundling *bool `json:"forceDockerBundling" yaml:"forceDockerBundling"`
// Output format for the generated JavaScript files.
Format OutputFormat `json:"format" yaml:"format"`
// This option allows you to automatically replace a global variable with an import from another file.
// See: https://esbuild.github.io/api/#inject
//
Inject *[]*string `json:"inject" yaml:"inject"`
// Whether to preserve the original `name` values even in minified code.
//
// In JavaScript the `name` property on functions and classes defaults to a
// nearby identifier in the source code.
//
// However, minification renames symbols to reduce code size and bundling
// sometimes need to rename symbols to avoid collisions. That changes value of
// the `name` property for many of these cases. This is usually fine because
// the `name` property is normally only used for debugging. However, some
// frameworks rely on the `name` property for registration and binding purposes.
// If this is the case, you can enable this option to preserve the original
// `name` values even in minified code.
KeepNames *bool `json:"keepNames" yaml:"keepNames"`
// Use loaders to change how a given input file is interpreted.
//
// Configuring a loader for a given file type lets you load that file type with
// an `import` statement or a `require` call.
// See: https://esbuild.github.io/api/#loader
//
// For example, `{ '.png': 'dataurl' }`.
//
Loader *map[string]*string `json:"loader" yaml:"loader"`
// Log level for esbuild.
//
// This is also propagated to the package manager and
// applies to its specific install command.
LogLevel LogLevel `json:"logLevel" yaml:"logLevel"`
// How to determine the entry point for modules.
//
// Try ['module', 'main'] to default to ES module versions.
MainFields *[]*string `json:"mainFields" yaml:"mainFields"`
// This option tells esbuild to write out a JSON file relative to output directory with metadata about the build.
//
// The metadata in this JSON file follows this schema (specified using TypeScript syntax):
//
// “`text
// {
// outputs: {
// [path: string]: {
// bytes: number
// inputs: {
// [path: string]: { bytesInOutput: number }
// }
// imports: { path: string }[]
// exports: string[]
// }
// }
// }
// “`
// This data can then be analyzed by other tools. For example,
// bundle buddy can consume esbuild's metadata format and generates a treemap visualization
// of the modules in your bundle and how much space each one takes up.
// See: https://esbuild.github.io/api/#metafile
//
Metafile *bool `json:"metafile" yaml:"metafile"`
// Whether to minify files when bundling.
Minify *bool `json:"minify" yaml:"minify"`
// A list of modules that should be installed instead of bundled.
//
// Modules are
// installed in a Lambda compatible environment only when bundling runs in
// Docker.
NodeModules *[]*string `json:"nodeModules" yaml:"nodeModules"`
// Run compilation using tsc before running file through bundling step.
//
// This usually is not required unless you are using new experimental features that
// are only supported by typescript's `tsc` compiler.
// One example of such feature is `emitDecoratorMetadata`.
PreCompilation *bool `json:"preCompilation" yaml:"preCompilation"`
// Whether to include source maps when bundling.
SourceMap *bool `json:"sourceMap" yaml:"sourceMap"`
// Source map mode to be used when bundling.
// See: https://esbuild.github.io/api/#sourcemap
//
SourceMapMode SourceMapMode `json:"sourceMapMode" yaml:"sourceMapMode"`
// Whether to include original source code in source maps when bundling.
// See: https://esbuild.github.io/api/#sources-content
//
SourcesContent *bool `json:"sourcesContent" yaml:"sourcesContent"`
// Target environment for the generated JavaScript code.
// See: https://esbuild.github.io/api/#target
//
Target *string `json:"target" yaml:"target"`
// Normally the esbuild automatically discovers `tsconfig.json` files and reads their contents during a build.
//
// However, you can also configure a custom `tsconfig.json` file to use instead.
//
// This is similar to entry path, you need to provide path to your custom `tsconfig.json`.
//
// This can be useful if you need to do multiple builds of the same code with different settings.
//
// For example, `{ 'tsconfig': 'path/custom.tsconfig.json' }`.
Tsconfig *string `json:"tsconfig" yaml:"tsconfig"`
}
Bundling options.
TODO: EXAMPLE
type ICommandHooks ¶
type ICommandHooks interface {
// Returns commands to run after bundling.
//
// Commands are chained with `&&`.
AfterBundling(inputDir *string, outputDir *string) *[]*string
// Returns commands to run before bundling.
//
// Commands are chained with `&&`.
BeforeBundling(inputDir *string, outputDir *string) *[]*string
// Returns commands to run before installing node modules.
//
// This hook only runs when node modules are installed.
//
// Commands are chained with `&&`.
BeforeInstall(inputDir *string, outputDir *string) *[]*string
}
Command hooks.
These commands will run in the environment in which bundling occurs: inside the container for Docker bundling or on the host OS for local bundling.
Commands are chained with `&&`.
The following example (specified in TypeScript) copies a file from the input directory to the output directory to include it in the bundled asset:
```text
afterBundling(inputDir: string, outputDir: string): string[]{
return [`cp ${inputDir}/my-binary.node ${outputDir}`];
}
```
type LogLevel ¶
type LogLevel string
Log levels for esbuild and package managers' install commands.
TODO: EXAMPLE
type NodejsFunction ¶
type NodejsFunction interface {
awslambda.Function
Architecture() awslambda.Architecture
CanCreatePermissions() *bool
Connections() awsec2.Connections
CurrentVersion() awslambda.Version
DeadLetterQueue() awssqs.IQueue
DeadLetterTopic() awssns.ITopic
Env() *awscdk.ResourceEnvironment
FunctionArn() *string
FunctionName() *string
GrantPrincipal() awsiam.IPrincipal
IsBoundToVpc() *bool
LatestVersion() awslambda.IVersion
LogGroup() awslogs.ILogGroup
Node() constructs.Node
PermissionsNode() constructs.Node
PhysicalName() *string
Role() awsiam.IRole
Runtime() awslambda.Runtime
Stack() awscdk.Stack
Timeout() awscdk.Duration
AddEnvironment(key *string, value *string, options *awslambda.EnvironmentOptions) awslambda.Function
AddEventSource(source awslambda.IEventSource)
AddEventSourceMapping(id *string, options *awslambda.EventSourceMappingOptions) awslambda.EventSourceMapping
AddLayers(layers ...awslambda.ILayerVersion)
AddPermission(id *string, permission *awslambda.Permission)
AddToRolePolicy(statement awsiam.PolicyStatement)
ApplyRemovalPolicy(policy awscdk.RemovalPolicy)
ConfigureAsyncInvoke(options *awslambda.EventInvokeConfigOptions)
GeneratePhysicalName() *string
GetResourceArnAttribute(arnAttr *string, arnComponents *awscdk.ArnComponents) *string
GetResourceNameAttribute(nameAttr *string) *string
GrantInvoke(grantee awsiam.IGrantable) awsiam.Grant
Metric(metricName *string, props *awscloudwatch.MetricOptions) awscloudwatch.Metric
MetricDuration(props *awscloudwatch.MetricOptions) awscloudwatch.Metric
MetricErrors(props *awscloudwatch.MetricOptions) awscloudwatch.Metric
MetricInvocations(props *awscloudwatch.MetricOptions) awscloudwatch.Metric
MetricThrottles(props *awscloudwatch.MetricOptions) awscloudwatch.Metric
ToString() *string
}
A Node.js Lambda function bundled using esbuild.
TODO: EXAMPLE
func NewNodejsFunction ¶
func NewNodejsFunction(scope constructs.Construct, id *string, props *NodejsFunctionProps) NodejsFunction
type NodejsFunctionProps ¶
type NodejsFunctionProps struct {
// The maximum age of a request that Lambda sends to a function for processing.
//
// Minimum: 60 seconds
// Maximum: 6 hours
MaxEventAge awscdk.Duration `json:"maxEventAge" yaml:"maxEventAge"`
// The destination for failed invocations.
OnFailure awslambda.IDestination `json:"onFailure" yaml:"onFailure"`
// The destination for successful invocations.
OnSuccess awslambda.IDestination `json:"onSuccess" yaml:"onSuccess"`
// The maximum number of times to retry when the function returns an error.
//
// Minimum: 0
// Maximum: 2
RetryAttempts *float64 `json:"retryAttempts" yaml:"retryAttempts"`
// Whether to allow the Lambda to send all network traffic.
//
// If set to false, you must individually add traffic rules to allow the
// Lambda to connect to network targets.
AllowAllOutbound *bool `json:"allowAllOutbound" yaml:"allowAllOutbound"`
// Lambda Functions in a public subnet can NOT access the internet.
//
// Use this property to acknowledge this limitation and still place the function in a public subnet.
// See: https://stackoverflow.com/questions/52992085/why-cant-an-aws-lambda-function-inside-a-public-subnet-in-a-vpc-connect-to-the/52994841#52994841
//
AllowPublicSubnet *bool `json:"allowPublicSubnet" yaml:"allowPublicSubnet"`
// The system architectures compatible with this lambda function.
Architecture awslambda.Architecture `json:"architecture" yaml:"architecture"`
// Code signing config associated with this function.
CodeSigningConfig awslambda.ICodeSigningConfig `json:"codeSigningConfig" yaml:"codeSigningConfig"`
// Options for the `lambda.Version` resource automatically created by the `fn.currentVersion` method.
CurrentVersionOptions *awslambda.VersionOptions `json:"currentVersionOptions" yaml:"currentVersionOptions"`
// The SQS queue to use if DLQ is enabled.
//
// If SNS topic is desired, specify `deadLetterTopic` property instead.
DeadLetterQueue awssqs.IQueue `json:"deadLetterQueue" yaml:"deadLetterQueue"`
// Enabled DLQ.
//
// If `deadLetterQueue` is undefined,
// an SQS queue with default options will be defined for your Function.
DeadLetterQueueEnabled *bool `json:"deadLetterQueueEnabled" yaml:"deadLetterQueueEnabled"`
// The SNS topic to use as a DLQ.
//
// Note that if `deadLetterQueueEnabled` is set to `true`, an SQS queue will be created
// rather than an SNS topic. Using an SNS topic as a DLQ requires this property to be set explicitly.
DeadLetterTopic awssns.ITopic `json:"deadLetterTopic" yaml:"deadLetterTopic"`
// A description of the function.
Description *string `json:"description" yaml:"description"`
// Key-value pairs that Lambda caches and makes available for your Lambda functions.
//
// Use environment variables to apply configuration changes, such
// as test and production environment configurations, without changing your
// Lambda function source code.
Environment *map[string]*string `json:"environment" yaml:"environment"`
// The AWS KMS key that's used to encrypt your function's environment variables.
EnvironmentEncryption awskms.IKey `json:"environmentEncryption" yaml:"environmentEncryption"`
// Event sources for this function.
//
// You can also add event sources using `addEventSource`.
Events *[]awslambda.IEventSource `json:"events" yaml:"events"`
// The filesystem configuration for the lambda function.
Filesystem awslambda.FileSystem `json:"filesystem" yaml:"filesystem"`
// A name for the function.
FunctionName *string `json:"functionName" yaml:"functionName"`
// Initial policy statements to add to the created Lambda Role.
//
// You can call `addToRolePolicy` to the created lambda to add statements post creation.
InitialPolicy *[]awsiam.PolicyStatement `json:"initialPolicy" yaml:"initialPolicy"`
// Specify the version of CloudWatch Lambda insights to use for monitoring.
// See: https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/Lambda-Insights-Getting-Started-docker.html
//
InsightsVersion awslambda.LambdaInsightsVersion `json:"insightsVersion" yaml:"insightsVersion"`
// A list of layers to add to the function's execution environment.
//
// You can configure your Lambda function to pull in
// additional code during initialization in the form of layers. Layers are packages of libraries or other dependencies
// that can be used by multiple functions.
Layers *[]awslambda.ILayerVersion `json:"layers" yaml:"layers"`
// The number of days log events are kept in CloudWatch Logs.
//
// When updating
// this property, unsetting it doesn't remove the log retention policy. To
// remove the retention policy, set the value to `INFINITE`.
LogRetention awslogs.RetentionDays `json:"logRetention" yaml:"logRetention"`
// When log retention is specified, a custom resource attempts to create the CloudWatch log group.
//
// These options control the retry policy when interacting with CloudWatch APIs.
LogRetentionRetryOptions *awslambda.LogRetentionRetryOptions `json:"logRetentionRetryOptions" yaml:"logRetentionRetryOptions"`
// The IAM role for the Lambda function associated with the custom resource that sets the retention policy.
LogRetentionRole awsiam.IRole `json:"logRetentionRole" yaml:"logRetentionRole"`
// The amount of memory, in MB, that is allocated to your Lambda function.
//
// Lambda uses this value to proportionally allocate the amount of CPU
// power. For more information, see Resource Model in the AWS Lambda
// Developer Guide.
MemorySize *float64 `json:"memorySize" yaml:"memorySize"`
// Enable profiling.
// See: https://docs.aws.amazon.com/codeguru/latest/profiler-ug/setting-up-lambda.html
//
Profiling *bool `json:"profiling" yaml:"profiling"`
// Profiling Group.
// See: https://docs.aws.amazon.com/codeguru/latest/profiler-ug/setting-up-lambda.html
//
ProfilingGroup awscodeguruprofiler.IProfilingGroup `json:"profilingGroup" yaml:"profilingGroup"`
// The maximum of concurrent executions you want to reserve for the function.
// See: https://docs.aws.amazon.com/lambda/latest/dg/concurrent-executions.html
//
ReservedConcurrentExecutions *float64 `json:"reservedConcurrentExecutions" yaml:"reservedConcurrentExecutions"`
// Lambda execution role.
//
// This is the role that will be assumed by the function upon execution.
// It controls the permissions that the function will have. The Role must
// be assumable by the 'lambda.amazonaws.com' service principal.
//
// The default Role automatically has permissions granted for Lambda execution. If you
// provide a Role, you must add the relevant AWS managed policies yourself.
//
// The relevant managed policies are "service-role/AWSLambdaBasicExecutionRole" and
// "service-role/AWSLambdaVPCAccessExecutionRole".
Role awsiam.IRole `json:"role" yaml:"role"`
// The list of security groups to associate with the Lambda's network interfaces.
//
// Only used if 'vpc' is supplied.
SecurityGroups *[]awsec2.ISecurityGroup `json:"securityGroups" yaml:"securityGroups"`
// The function execution time (in seconds) after which Lambda terminates the function.
//
// Because the execution time affects cost, set this value
// based on the function's expected execution time.
Timeout awscdk.Duration `json:"timeout" yaml:"timeout"`
// Enable AWS X-Ray Tracing for Lambda Function.
Tracing awslambda.Tracing `json:"tracing" yaml:"tracing"`
// VPC network to place Lambda network interfaces.
//
// Specify this if the Lambda function needs to access resources in a VPC.
Vpc awsec2.IVpc `json:"vpc" yaml:"vpc"`
// Where to place the network interfaces within the VPC.
//
// Only used if 'vpc' is supplied. Note: internet access for Lambdas
// requires a NAT gateway, so picking Public subnets is not allowed.
VpcSubnets *awsec2.SubnetSelection `json:"vpcSubnets" yaml:"vpcSubnets"`
// Whether to automatically reuse TCP connections when working with the AWS SDK for JavaScript.
//
// This sets the `AWS_NODEJS_CONNECTION_REUSE_ENABLED` environment variable
// to `1`.
// See: https://docs.aws.amazon.com/sdk-for-javascript/v2/developer-guide/node-reusing-connections.html
//
AwsSdkConnectionReuse *bool `json:"awsSdkConnectionReuse" yaml:"awsSdkConnectionReuse"`
// Bundling options.
Bundling *BundlingOptions `json:"bundling" yaml:"bundling"`
// The path to the dependencies lock file (`yarn.lock` or `package-lock.json`).
//
// This will be used as the source for the volume mounted in the Docker
// container.
//
// Modules specified in `nodeModules` will be installed using the right
// installer (`npm` or `yarn`) along with this lock file.
DepsLockFilePath *string `json:"depsLockFilePath" yaml:"depsLockFilePath"`
// Path to the entry file (JavaScript or TypeScript).
Entry *string `json:"entry" yaml:"entry"`
// The name of the exported handler in the entry file.
Handler *string `json:"handler" yaml:"handler"`
// The path to the directory containing project config files (`package.json` or `tsconfig.json`).
ProjectRoot *string `json:"projectRoot" yaml:"projectRoot"`
// The runtime environment.
//
// Only runtimes of the Node.js family are
// supported.
Runtime awslambda.Runtime `json:"runtime" yaml:"runtime"`
}
Properties for a NodejsFunction.
TODO: EXAMPLE
type OutputFormat ¶ added in v2.7.0
type OutputFormat string
Output format for the generated JavaScript files.
TODO: EXAMPLE
const ( OutputFormat_CJS OutputFormat = "CJS" OutputFormat_ESM OutputFormat = "ESM" )
type SourceMapMode ¶
type SourceMapMode string
SourceMap mode for esbuild.
TODO: EXAMPLE
See: https://esbuild.github.io/api/#sourcemap
const ( SourceMapMode_DEFAULT SourceMapMode = "DEFAULT" SourceMapMode_EXTERNAL SourceMapMode = "EXTERNAL" SourceMapMode_INLINE SourceMapMode = "INLINE" SourceMapMode_BOTH SourceMapMode = "BOTH" )