typescript

TypeScript definitions for Serverless Framework service configuration (by serverless)

Typescript Alternatives

Similar projects and alternatives to typescript based on common topics and language

NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a better typescript alternative or higher similarity.

typescript reviews and mentions

Posts with mentions or reviews of typescript. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-02-06.
  • Lambda function to create xlsx file from JSON data and store on s3 using nodeJS/typescript
    3 projects | dev.to | 6 Feb 2022
    import type { AWS } from '@serverless/typescript'; const serverlessConfiguration: AWS = { service: 'jsontoxlsx', frameworkVersion: '2', custom: { webpack: { webpackConfig: './webpack.config.js', includeModules: true }, //'${ssm:/jsontoxlsx/api/BUCKET_NAME}' ssm is not supported yet, I have //raised an issue here - https://github.com/serverless/typescript/issues/59. //Once this is fixed, we don't have to hardcode bucket names on this file //and can be access from AWS system manager's parameter store AWS_BUCKET_NAME: 'Your bucket name' }, // Add the serverless-webpack plugin plugins: ['serverless-webpack', 'serverless-offline'], provider: { name: 'aws', runtime: 'nodejs14.x', apiGateway: { minimumCompressionSize: 1024, }, environment: { AWS_NODEJS_CONNECTION_REUSE_ENABLED: '1', AWS_BUCKET_NAME: '${self:custom.AWS_BUCKET_NAME}' }, }, functions: { jsontoxlsx: { handler: 'handler.jsontoxlsx', events: [ { http: { method: 'get', path: 'jsontoxlsx', } } ] } } } module.exports = serverlessConfiguration;
  • Serverless Framework ❤️ AWS CDK
    3 projects | dev.to | 26 Jan 2022
    Since v1.72.0, the Serverless framework accepts serverless.ts as a valid service file in addition to the more commonly-known serverless.yml, serverless.json and serverless.js file formats. Using serverless.js or serverless.ts service definition is a requirement to implement this solution. Both those formats allow programmatic execution using Node.js in order to build the output service definition. In addition, you benefit from TypeScript definitions exported by @serverless/typescript package to help you build your Serverless Framework service definition properly.

Stats

Basic typescript repo stats
2
140
5.0
5 months ago

The primary programming language of typescript is TypeScript.


Sponsored
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com