All Projects → threadheap → Serverless Ide Vscode

threadheap / Serverless Ide Vscode

Serverless IDE: Enhanced support for AWS SAM and CloudFormation in VS Code

Programming Languages

typescript
32286 projects

Projects that are alternatives of or similar to Serverless Ide Vscode

Shorty.sls
Serverless URL shortener written in Python3 using the serverless framework
Stars: ✭ 35 (-75.86%)
Mutual labels:  aws, serverless-framework, cloudformation
Serverless Aws Lambda Node Postgres
Serverless AWS Lambda with Node.js,Postgres Rest API with Sequelize.
Stars: ✭ 18 (-87.59%)
Mutual labels:  aws, serverless-framework, cloudformation
Serverlessbydesign
A visual approach to serverless development. Think. Build. Repeat.
Stars: ✭ 254 (+75.17%)
Mutual labels:  aws, serverless-framework, cloudformation
Perun
A command-line validation tool for AWS Cloud Formation that allows to conquer the cloud faster!
Stars: ✭ 82 (-43.45%)
Mutual labels:  aws, cloudformation, yaml
Aws Cloudformation Github Deploy
Deploys AWS CloudFormation Stacks
Stars: ✭ 105 (-27.59%)
Mutual labels:  aws, cloudformation
Kinesis Streams Fan Out Kinesis Analytics
Amazon Kinesis Streams fan-out via Kinesis Analytics (powered by the Serverless Framework)
Stars: ✭ 95 (-34.48%)
Mutual labels:  aws, serverless-framework
Json Serverless
Transform a JSON file into a serverless REST API in AWS cloud
Stars: ✭ 108 (-25.52%)
Mutual labels:  aws, serverless-framework
Serverless Docker Image Resize
Simple serverless image resize on-the-fly - Deploy with one command - Built with AWS Lambda and S3
Stars: ✭ 114 (-21.38%)
Mutual labels:  aws, serverless-framework
Aws Multi Account Viewer
Serverless app designed for any customer with two or more accounts to view resources across accounts/regions in simple single pane of glass website
Stars: ✭ 87 (-40%)
Mutual labels:  aws, cloudformation
Serverless static website with basic auth
Builds a serverless infrastructure in AWS for hosting a static website protected with Basic Authentication and published on a subdomain registered via Route 53
Stars: ✭ 112 (-22.76%)
Mutual labels:  aws, cloudformation
Cfn Python Lint
CloudFormation Linter
Stars: ✭ 1,770 (+1120.69%)
Mutual labels:  aws, cloudformation
Aws Lambda Vpc Nat Examples
Example of setting up AWS lambda function with VPC and NAT
Stars: ✭ 92 (-36.55%)
Mutual labels:  aws, serverless-framework
Awesome Aws
A curated list of awesome Amazon Web Services (AWS) libraries, open source repos, guides, blogs, and other resources. Featuring the Fiery Meter of AWSome.
Stars: ✭ 9,895 (+6724.14%)
Mutual labels:  aws, cloudformation
Serverless
⚡ Serverless Framework – Build web, mobile and IoT applications with serverless architectures using AWS Lambda, Azure Functions, Google CloudFunctions & more! –
Stars: ✭ 41,584 (+28578.62%)
Mutual labels:  aws, serverless-framework
Cfer
Toolkit and Ruby DSL for automating infrastructure using AWS CloudFormation
Stars: ✭ 89 (-38.62%)
Mutual labels:  aws, cloudformation
Awesome Layers
λ A curated list of awesome AWS Lambda Layers. Sponsored by https://cloudash.dev
Stars: ✭ 1,655 (+1041.38%)
Mutual labels:  aws, serverless-framework
Serverless S3 Sync
A plugin to sync local directories and S3 prefixes for Serverless Framework ⚡️
Stars: ✭ 126 (-13.1%)
Mutual labels:  aws, serverless-framework
Cloudformation
Some CF templates
Stars: ✭ 123 (-15.17%)
Mutual labels:  aws, cloudformation
Kumogata
Kumogata is a tool for AWS CloudFormation. It can define a template in Ruby DSL.
Stars: ✭ 128 (-11.72%)
Mutual labels:  aws, cloudformation
Serverless Dynamodb Autoscaling
Serverless Plugin for Amazon DynamoDB Auto Scaling configuration.
Stars: ✭ 142 (-2.07%)
Mutual labels:  aws, cloudformation

Marketplace Version Rating Installs

Serverless IDE: Enhanced support of AWS SAM, CloudFormation and Serverless Framework in Visual Studio Code

Provides comprehensive AWS SAM (Serverless Application Model), Cloudformation and Serverless Framework support to Visual Studio Code.

serverless-ide.com

Features

Smart autocompletion

Boost your prodictivity with smart autocompletion for your yaml templates and AWS CloudFormation resources. Just start typing and then pick from available options:

ServerlessIDE autocompletion demo

Go-to definitions and references

Navigate in the code with resources links

Validation

Serverless IDE can validation templates and references to resources, properties and outputs: ServerlessIDE validation demo

AWS documentation at glance

Get easy access to AWS documentation right from the template. Just hover over resources and properties:

ServerlessIDE AWS Documentation

Serverless Framework Support

Extetion provides limited serverless framework support: ServerlessIDE Serverless Framework Support

Note: ServerlessIDE does not support validation of resources and external imports and parameters for Serverless Framework

Settings

The following settings are supported:

  • serverlessIDE.validate: Enable/disable validation feature
  • serverlessIDE.hover: Enable/disable hover documentation
  • serverlessIDE.completion: Enable/disable autocompletion
  • serverlessIDE.validationProvider : Validation provider. Can be default (uses json schema) or cfn-lint
  • serverlessIDE.telemetry.enableTelemetry : Enable/disable telemetry and crash reporting

cfn-lint is used as default validator More information about installation and configuration can be found here

  • serverlessIDE.cfnLint.path : Path to cfn-lint command (default to cfn-lint)
  • serverlessIDE.cfnLint.appendRules : Additional cfn-lint rules
  • serverlessIDE.cfnLint.ignoreRules : Array of rules to ignore

Language settings:

  • [yaml]: VSCode-YAML adds default configuration for all yaml files. More specifically it converts tabs to spaces to ensure valid yaml, sets the tab size, and allows live typing autocompletion. These settings can be modified via the corresponding settings inside the [yaml] section in the settings:
    • editor.insertSpaces
    • editor.tabSize
    • editor.quickSuggestions

Telemetry

ServerlessIDE collects usage data and metrics to help us improve the extension for VS Code.

What data is collected?

ServerlessIDE collects anonymous information related to the usage of the extensions, such as which commands were run, as well as performance and error data.

How do I disable telemetry reporting?

On Windows or Linux, select File > Preferences > Settings. On macOS, select Code > Preferences > Settings. Then, to silence all telemetry events from the VS Code shell and disable telemetry reporting, add the following option.

"serverlessIDE.telemetry.enableTelemetry": false

IMPORTANT: This option requires a restart of VS Code to take effect.

NOTE: We also respect the global telemetry setting telemetry.enableTelemetry; if that is set to false, ServerlessIDE telemetry is disabled. For more information see Microsoft’s documentation.

Questions and feedback

Feature requests and feedback are very appreciated

Feel free to raise a feature request in the project repository.

Check out public roadmap board, propose and vote for new features.

DM or follow me on twitter or medium or contact by email

Contributions

You can find the code on GitHub repository

Setup

The project is split between packages backed by lerna. You can explore source code in packages folder.

Prerequisites

NodeJS >= 8.x VSCode

npm install lerna -g
npm install
lerna bootstrap

Test run

To test your changes in VSCode

Use Launch Extension command to build and start extension Use Attach Server command to attach debugger

Author

Pavel Vlasov

License

Apache License 2.0

All documentation provided has copyright by Amazon Web Services, Inc. or its affiliates, and was published under the terms that can be found at https://aws.amazon.com/terms/

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].