Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/threadheap/serverless-ide-vscode
Serverless IDE: Enhanced support for AWS SAM and CloudFormation in VS Code
https://github.com/threadheap/serverless-ide-vscode
aws cfn-lint cloudformation serverless-framework visual-studio yaml
Last synced: about 1 month ago
JSON representation
Serverless IDE: Enhanced support for AWS SAM and CloudFormation in VS Code
- Host: GitHub
- URL: https://github.com/threadheap/serverless-ide-vscode
- Owner: threadheap
- Created: 2019-01-01T01:53:06.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2024-04-17T04:26:30.000Z (8 months ago)
- Last Synced: 2024-10-31T18:37:15.603Z (about 1 month ago)
- Topics: aws, cfn-lint, cloudformation, serverless-framework, visual-studio, yaml
- Language: TypeScript
- Homepage: https://serverless-ide.com/
- Size: 17.3 MB
- Stars: 195
- Watchers: 7
- Forks: 45
- Open Issues: 27
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
Awesome Lists containing this project
- awesome-github-star - serverless-ide-vscode
README
[![Marketplace Version](https://vsmarketplacebadges.dev/version/ThreadHeap.serverless-ide-vscode.png 'Current Release')](https://marketplace.visualstudio.com/items?itemName=ThreadHeap.serverless-ide-vscode)
[![Rating](https://vsmarketplacebadges.dev/rating-star/ThreadHeap.serverless-ide-vscode.png 'Current Release')](https://marketplace.visualstudio.com/items?itemName=ThreadHeap.serverless-ide-vscode)
[![Installs](https://vsmarketplacebadges.dev/installs/ThreadHeap.serverless-ide-vscode.png 'Current Release')](https://marketplace.visualstudio.com/items?itemName=ThreadHeap.serverless-ide-vscode)# Serverless IDE: Enhanced support of AWS SAM, CloudFormation and Serverless Framework in Visual Studio Code
Provides comprehensive [AWS SAM (Serverless Application Model)](https://aws.amazon.com/serverless/sam/), Cloudformation and [Serverless Framework](https://serverless.com/) support to [Visual Studio Code](https://code.visualstudio.com/).
[serverless-ide.com](https://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](https://raw.githubusercontent.com/threadheap/serverless-ide-vscode/master/packages/vscode/demo/autocomplete.gif)
### 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](https://raw.githubusercontent.com/threadheap/serverless-ide-vscode/master/packages/vscode/demo/validation.gif)### AWS documentation at glance
Get easy access to AWS documentation right from the template. Just hover over resources and properties:
![ServerlessIDE AWS Documentation](https://raw.githubusercontent.com/threadheap/serverless-ide-vscode/master/packages/vscode/demo/documentation.gif)
### Serverless Framework Support
Extension provides limited serverless framework support:
![ServerlessIDE Serverless Framework Support](https://raw.githubusercontent.com/threadheap/serverless-ide-vscode/master/packages/vscode/demo/serverless_framework.gif)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`](https://github.com/aws-cloudformation/cfn-python-lint)
- `serverlessIDE.telemetry.enableTelemetry` : Enable/disable telemetry and crash reporting[cfn-lint](https://github.com/aws-cloudformation/cfn-python-lint) is used as default validator
More information about installation and configuration can be found [here](https://github.com/aws-cloudformation/cfn-python-lint)- `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 ignoreLanguage 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](https://code.visualstudio.com/docs/supporting/faq#_how-to-disable-telemetry-reporting).
## Questions and feedback
Feature requests and feedback are very appreciated
Feel free to raise a feature request in [the project repository](https://github.com/threadheap/serverless-ide-vscode/issues).
Check out [public roadmap board](https://github.com/threadheap/serverless-ide-vscode/projects), propose and vote for new features.
DM or follow me on [twitter](https://twitter.com/pvl4sov) or [medium](https://medium.com/@pvlasov)
or contact [by email](mailto:[email protected])## Contributions
You can find [the code on GitHub repository](https://github.com/threadheap/serverless-ide-vscode)
### Setup
The project is split between packages backed by lerna.
You can explore source code in `packages` folder.#### Prerequisites
NodeJS >= 8.x
VSCode```sh
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](https://github.com/pavelvlasov)
### 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