Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/danilop/serverlessbydesign
A visual approach to serverless development. Think. Build. Repeat.
https://github.com/danilop/serverlessbydesign
aws aws-lambda aws-sam cloud cloudformation developer-tools development event-driven serverless serverless-development serverless-framework visual
Last synced: about 9 hours ago
JSON representation
A visual approach to serverless development. Think. Build. Repeat.
- Host: GitHub
- URL: https://github.com/danilop/serverlessbydesign
- Owner: danilop
- License: mit
- Created: 2017-08-31T13:29:02.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2023-01-07T04:27:06.000Z (almost 2 years ago)
- Last Synced: 2024-12-23T08:39:05.821Z (2 days ago)
- Topics: aws, aws-lambda, aws-sam, cloud, cloudformation, developer-tools, development, event-driven, serverless, serverless-development, serverless-framework, visual
- Language: JavaScript
- Homepage: https://sbd.danilop.net
- Size: 2.63 MB
- Stars: 288
- Watchers: 13
- Forks: 35
- Open Issues: 25
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Serverless By Design
![Serverless by Design screenshot](https://danilop.s3.amazonaws.com/Images/serverless-by-design.png)
Serverless By Design is a visual approach to serverless development:
- An application is a network of _nodes_ (serverless resources, such as Lambda functions or S3 buckets) connected by _edges_ (their relationships, for example a trigger or a data flow)
- _Edit_ an application adding nodes and edges following an _event-driven_ design
- _Import_ a previously exported application to continue working on it
- Choose a _runtime_, and _build_ your application (for example, using AWS SAM)
- Optionally use _canary_ or _linear_ deployments for your future updates
- Edit _templates_ and code files for the final configurations before deploying the application
- _Export_ an application to save it for later use in a JSON file
- Take a _picture_ of the application architecture to have a visual representation to share
- Fine tune the _physics_ used to place nodes and edges on the screen, for example enable/disable it or choose another solverServerless By Design runs in the browser and doesn't need an internet connection when installed locally.
A live version is available at: http://sbd.danilop.net
Think. Build. Repeat.
## License
Copyright (c) 2017 Danilo Poccia, http://danilop.net
This code is licensed under the The MIT License (MIT). Please see the LICENSE file that accompanies this project for the terms of use.
## Installation
You need `node` and `npm`. Just run:
```
npm run build
```to build it for production, then open `dist/index.html` with your favourite browser.
For a development build, that you can debug with a browser, use:
```
npm run dev
```## Usage
Here are a few examples to help you start:
- [Basic API](https://sbd.danilop.net/?import=examples/basic-api.json)
- [S3 Processing](https://sbd.danilop.net/?import=examples/s3-processing.json)
- [Firehose Processing API](https://sbd.danilop.net/?import=examples/firehose.json)
- [Streaming Analytics](https://sbd.danilop.net/?import=examples/stream-test.json)
- [Some IoT](https://sbd.danilop.net/?import=examples/iot.json)
- [All Together Now](https://sbd.danilop.net/?import=examples/full-app.json)## Dependencies
This code depends on:
- [Vis.js](http://visjs.org)
- [js-yaml](http://nodeca.github.io/js-yaml/)
- [FileSaver.js](https://github.com/eligrey/FileSaver.js/)
- [jszip](https://stuk.github.io/jszip/)
- [font-awesome](http://fontawesome.io)
- [JQuery](https://jquery.com)