├── .prettierignore ├── .gitignore ├── assets ├── apiless-icon.pdf ├── apiless-icon.png ├── apiless-architecture.png ├── typical-architecture.png ├── apiless-icon-white-background.png ├── apiless-icon.svg ├── apiless-architecture.excalidraw └── typical-architecture.excalidraw ├── .vscode └── extensions.json ├── .editorconfig ├── website ├── README.md ├── frontend │ ├── package.json │ ├── simple-deployment.config.js │ └── src │ │ └── index.html └── package.json ├── package.json ├── LICENSE ├── README.md └── CODE_OF_CONDUCT.md /.prettierignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | build 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.log 3 | node_modules 4 | dist 5 | build 6 | _private 7 | *.private.* 8 | -------------------------------------------------------------------------------- /assets/apiless-icon.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apilessdev/apiless/HEAD/assets/apiless-icon.pdf -------------------------------------------------------------------------------- /assets/apiless-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apilessdev/apiless/HEAD/assets/apiless-icon.png -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | "recommendations": ["esbenp.prettier-vscode", "editorconfig.editorconfig"] 3 | } 4 | -------------------------------------------------------------------------------- /assets/apiless-architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apilessdev/apiless/HEAD/assets/apiless-architecture.png -------------------------------------------------------------------------------- /assets/typical-architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apilessdev/apiless/HEAD/assets/typical-architecture.png -------------------------------------------------------------------------------- /assets/apiless-icon-white-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apilessdev/apiless/HEAD/assets/apiless-icon-white-background.png -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | # editorconfig.org 2 | root = true 3 | 4 | [*] 5 | indent_style = space 6 | indent_size = 2 7 | end_of_line = lf 8 | charset = utf-8 9 | trim_trailing_whitespace = true 10 | insert_final_newline = true 11 | 12 | [*.md] 13 | trim_trailing_whitespace = false 14 | -------------------------------------------------------------------------------- /website/README.md: -------------------------------------------------------------------------------- 1 | # API-less Website 2 | 3 | ## Install 4 | 5 | Install the npm dependencies with: 6 | 7 | ```sh 8 | npm install 9 | ``` 10 | 11 | ## Deployment 12 | 13 | Execute the following command: 14 | 15 | ```sh 16 | FRONTEND_URL=https://apiless.dev npm run deploy 17 | ``` 18 | -------------------------------------------------------------------------------- /website/frontend/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@apiless/website-frontend", 3 | "version": "1.0.0", 4 | "private": true, 5 | "author": "Manuel Vila ", 6 | "license": "MIT", 7 | "scripts": { 8 | "deploy": "simple-deployment" 9 | }, 10 | "dependencies": {}, 11 | "devDependencies": { 12 | "simple-deployment": "^0.1.41" 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /website/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@apiless/website", 3 | "version": "1.0.0", 4 | "private": true, 5 | "author": "Manuel Vila ", 6 | "license": "MIT", 7 | "scripts": { 8 | "deploy": "(cd ./frontend && npm run deploy)", 9 | "postinstall": "(cd ./frontend && npm install)", 10 | "update": "(cd ./frontend && npm update)" 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@apiless/monorepo", 3 | "version": "1.0.0", 4 | "private": true, 5 | "description": "All about the API-less architecture", 6 | "keywords": [], 7 | "author": "Manuel Vila ", 8 | "license": "MIT", 9 | "repository": "https://github.com/apilessdev/apiless", 10 | "scripts": {}, 11 | "prettier": "@mvila/prettierrc", 12 | "devDependencies": { 13 | "@mvila/prettierrc": "^1.1.0", 14 | "prettier": "^2.1.2" 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /website/frontend/simple-deployment.config.js: -------------------------------------------------------------------------------- 1 | module.exports = () => { 2 | const frontendURL = process.env.FRONTEND_URL; 3 | 4 | if (!frontendURL) { 5 | throw new Error(`'FRONTEND_URL' environment variable is missing`); 6 | } 7 | 8 | const domainName = new URL(frontendURL).hostname; 9 | 10 | return { 11 | type: 'website', 12 | provider: 'aws', 13 | domainName, 14 | files: ['./src'], 15 | customErrors: [{errorCode: 404, responseCode: 200, responsePage: 'index.html'}], 16 | aws: { 17 | region: 'us-west-2', 18 | cloudFront: { 19 | priceClass: 'PriceClass_100' 20 | } 21 | } 22 | }; 23 | }; 24 | -------------------------------------------------------------------------------- /website/frontend/src/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | API-less – All about the API-less architecture 6 | 7 | 8 | 9 | 10 | 11 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2020 Manuel Vila 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. -------------------------------------------------------------------------------- /assets/apiless-icon.svg: -------------------------------------------------------------------------------- 1 | apiless-icon -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |

2 | API-less 3 |
4 |
5 |

6 | 7 | ## API-Less Architecture 8 | 9 | Most modern applications (single-page web apps, mobile apps, etc.) consist of two parts: 10 | 11 | - A frontend to manage the user interface. 12 | - A backend to manage business logic and data storage. 13 | 14 | To connect the frontend and the backend, a web API (REST, GraphQL, etc.) is generally used, which requires the development of an API client on the frontend side and an API server on the backend side. 15 | 16 | We have the following architecture: 17 | 18 |

19 | Typical architecture 20 |

21 | 22 | With an API-less architecture, the frontend can communicate with the backend without the need to build a web API. The backend exposes functions (or methods) that the frontend can call directly, and the developer no longer has to worry about URL paths, HTTP methods, or status codes. 23 | 24 | Of course, since the frontend and the backend run in separate environments, there is necessarily an API client and an API server in between, but they are no longer the responsibility of the developer. The API layers are handled by a library or a framework. 25 | 26 | So an API-less architecture looks like this: 27 | 28 |

29 | Typical architecture 30 |

31 | 32 | Removing the API layers not only reduces the amount of code the developer has to write, it also improves quality by reducing code scattering and duplication of knowledge. 33 | 34 | ## Libraries and Frameworks 35 | 36 | A growing number of libraries and frameworks allow to implement the API-less architecture. 37 | 38 | ### JavaScript/TypeScript 39 | 40 | | Product | Product type | API type | Real time | Mobile support | Since | 41 | | --------------------------------- | ------------ | --------------- | -------------- | -------------- | :---: | 42 | | [Meteor](https://www.meteor.com/) | Framework | Procedural | Yes | Yes | 2012 | 43 | | [Layr](https://layrjs.com/) | Library | Object-oriented | On the roadmap | Yes | 2019 | 44 | | [Blitz.js](https://blitzjs.com/) | Framework | Procedural | No | On the roadmap | 2020 | 45 | | [tRPC](https://trpc.io/) | Library | Procedural | In beta | Yes | 2021 | 46 | | [Telefunc](https://telefunc.com/) | Library | Procedural | On the roadmap | Yes | 2021 | 47 | 48 | ## Contributing 49 | 50 | Contributions are welcome. 51 | 52 | Before contributing please read the [code of conduct](https://github.com/apilessdev/apiless/blob/main/CODE_OF_CONDUCT.md) and search the [issue tracker](https://github.com/apilessdev/apiless/issues) to find out if your issue has already been discussed before. 53 | 54 | To contribute, [fork this repository](https://docs.github.com/en/github/getting-started-with-github/fork-a-repo/), commit your changes, and [send a pull request](https://docs.github.com/en/github/collaborating-with-issues-and-pull-requests/about-pull-requests). 55 | 56 | ## License 57 | 58 | MIT 59 | -------------------------------------------------------------------------------- /assets/apiless-architecture.excalidraw: -------------------------------------------------------------------------------- 1 | { 2 | "type": "excalidraw", 3 | "version": 2, 4 | "source": "https://excalidraw.com", 5 | "elements": [ 6 | { 7 | "type": "rectangle", 8 | "version": 863, 9 | "versionNonce": 926298633, 10 | "isDeleted": false, 11 | "id": "zk1Tzfs7TN7NuvV9nUrkK", 12 | "fillStyle": "hachure", 13 | "strokeWidth": 2, 14 | "strokeStyle": "solid", 15 | "roughness": 1, 16 | "opacity": 100, 17 | "angle": 0, 18 | "x": 510.0625, 19 | "y": 98.685546875, 20 | "strokeColor": "#ff4081", 21 | "backgroundColor": "transparent", 22 | "width": 253.4743303571429, 23 | "height": 67.28515625, 24 | "seed": 1135815662, 25 | "groupIds": [], 26 | "strokeSharpness": "sharp", 27 | "boundElementIds": [ 28 | "_q_pfShbWagNPeqr2Cw4q", 29 | "CzbKjuh5LlBF8vEsdGoYs", 30 | "euFzlspcyBdei7ZjDGsTE" 31 | ] 32 | }, 33 | { 34 | "type": "text", 35 | "version": 489, 36 | "versionNonce": 604278535, 37 | "isDeleted": false, 38 | "id": "pbft6g1zEaKzjxE9qI4WH", 39 | "fillStyle": "hachure", 40 | "strokeWidth": 2, 41 | "strokeStyle": "solid", 42 | "roughness": 1, 43 | "opacity": 100, 44 | "angle": 0, 45 | "x": 582.7633928571429, 46 | "y": 114.59933035714283, 47 | "strokeColor": "#ff4081", 48 | "backgroundColor": "transparent", 49 | "width": 113, 50 | "height": 35, 51 | "seed": 1694556846, 52 | "groupIds": [], 53 | "strokeSharpness": "sharp", 54 | "boundElementIds": [], 55 | "fontSize": 28, 56 | "fontFamily": 1, 57 | "text": "Backend", 58 | "baseline": 25, 59 | "textAlign": "center", 60 | "verticalAlign": "top" 61 | }, 62 | { 63 | "type": "rectangle", 64 | "version": 888, 65 | "versionNonce": 2006255849, 66 | "isDeleted": false, 67 | "id": "G_sH-_BODgjExxHFIJUO7", 68 | "fillStyle": "hachure", 69 | "strokeWidth": 2, 70 | "strokeStyle": "solid", 71 | "roughness": 1, 72 | "opacity": 100, 73 | "angle": 0, 74 | "x": 510.14453125, 75 | "y": 199.740234375, 76 | "strokeColor": "#ff4081", 77 | "backgroundColor": "transparent", 78 | "width": 251.515625, 79 | "height": 67.28515625, 80 | "seed": 2087476462, 81 | "groupIds": [], 82 | "strokeSharpness": "sharp", 83 | "boundElementIds": [ 84 | "P-5Se_P31c9YU_W_jiyRL", 85 | "CzbKjuh5LlBF8vEsdGoYs" 86 | ] 87 | }, 88 | { 89 | "type": "text", 90 | "version": 538, 91 | "versionNonce": 1053496871, 92 | "isDeleted": false, 93 | "id": "FWR6GQyMu_VgSTbgtdktG", 94 | "fillStyle": "hachure", 95 | "strokeWidth": 2, 96 | "strokeStyle": "solid", 97 | "roughness": 1, 98 | "opacity": 100, 99 | "angle": 0, 100 | "x": 578.8018973214286, 101 | "y": 216.32366071428567, 102 | "strokeColor": "#ff4081", 103 | "backgroundColor": "transparent", 104 | "width": 119, 105 | "height": 35, 106 | "seed": 82743086, 107 | "groupIds": [], 108 | "strokeSharpness": "sharp", 109 | "boundElementIds": [], 110 | "fontSize": 28, 111 | "fontFamily": 1, 112 | "text": "Frontend", 113 | "baseline": 25, 114 | "textAlign": "center", 115 | "verticalAlign": "top" 116 | } 117 | ], 118 | "appState": { 119 | "viewBackgroundColor": "#000", 120 | "gridSize": null 121 | } 122 | } -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Contributor Covenant Code of Conduct 2 | 3 | ## Our Pledge 4 | 5 | We as members, contributors, and leaders pledge to make participation in our 6 | community a harassment-free experience for everyone, regardless of age, body 7 | size, visible or invisible disability, ethnicity, sex characteristics, gender 8 | identity and expression, level of experience, education, socio-economic status, 9 | nationality, personal appearance, race, religion, or sexual identity 10 | and orientation. 11 | 12 | We pledge to act and interact in ways that contribute to an open, welcoming, 13 | diverse, inclusive, and healthy community. 14 | 15 | ## Our Standards 16 | 17 | Examples of behavior that contributes to a positive environment for our 18 | community include: 19 | 20 | - Demonstrating empathy and kindness toward other people 21 | - Being respectful of differing opinions, viewpoints, and experiences 22 | - Giving and gracefully accepting constructive feedback 23 | - Accepting responsibility and apologizing to those affected by our mistakes, 24 | and learning from the experience 25 | - Focusing on what is best not just for us as individuals, but for the 26 | overall community 27 | 28 | Examples of unacceptable behavior include: 29 | 30 | - The use of sexualized language or imagery, and sexual attention or 31 | advances of any kind 32 | - Trolling, insulting or derogatory comments, and personal or political attacks 33 | - Public or private harassment 34 | - Publishing others' private information, such as a physical or email 35 | address, without their explicit permission 36 | - Other conduct which could reasonably be considered inappropriate in a 37 | professional setting 38 | 39 | ## Enforcement Responsibilities 40 | 41 | Community leaders are responsible for clarifying and enforcing our standards of 42 | acceptable behavior and will take appropriate and fair corrective action in 43 | response to any behavior that they deem inappropriate, threatening, offensive, 44 | or harmful. 45 | 46 | Community leaders have the right and responsibility to remove, edit, or reject 47 | comments, commits, code, wiki edits, issues, and other contributions that are 48 | not aligned to this Code of Conduct, and will communicate reasons for moderation 49 | decisions when appropriate. 50 | 51 | ## Scope 52 | 53 | This Code of Conduct applies within all community spaces, and also applies when 54 | an individual is officially representing the community in public spaces. 55 | Examples of representing our community include using an official e-mail address, 56 | posting via an official social media account, or acting as an appointed 57 | representative at an online or offline event. 58 | 59 | ## Enforcement 60 | 61 | Instances of abusive, harassing, or otherwise unacceptable behavior may be 62 | reported to the community leaders responsible for enforcement at 63 | hello@apiless.dev. 64 | All complaints will be reviewed and investigated promptly and fairly. 65 | 66 | All community leaders are obligated to respect the privacy and security of the 67 | reporter of any incident. 68 | 69 | ## Enforcement Guidelines 70 | 71 | Community leaders will follow these Community Impact Guidelines in determining 72 | the consequences for any action they deem in violation of this Code of Conduct: 73 | 74 | ### 1. Correction 75 | 76 | **Community Impact**: Use of inappropriate language or other behavior deemed 77 | unprofessional or unwelcome in the community. 78 | 79 | **Consequence**: A private, written warning from community leaders, providing 80 | clarity around the nature of the violation and an explanation of why the 81 | behavior was inappropriate. A public apology may be requested. 82 | 83 | ### 2. Warning 84 | 85 | **Community Impact**: A violation through a single incident or series 86 | of actions. 87 | 88 | **Consequence**: A warning with consequences for continued behavior. No 89 | interaction with the people involved, including unsolicited interaction with 90 | those enforcing the Code of Conduct, for a specified period of time. This 91 | includes avoiding interactions in community spaces as well as external channels 92 | like social media. Violating these terms may lead to a temporary or 93 | permanent ban. 94 | 95 | ### 3. Temporary Ban 96 | 97 | **Community Impact**: A serious violation of community standards, including 98 | sustained inappropriate behavior. 99 | 100 | **Consequence**: A temporary ban from any sort of interaction or public 101 | communication with the community for a specified period of time. No public or 102 | private interaction with the people involved, including unsolicited interaction 103 | with those enforcing the Code of Conduct, is allowed during this period. 104 | Violating these terms may lead to a permanent ban. 105 | 106 | ### 4. Permanent Ban 107 | 108 | **Community Impact**: Demonstrating a pattern of violation of community 109 | standards, including sustained inappropriate behavior, harassment of an 110 | individual, or aggression toward or disparagement of classes of individuals. 111 | 112 | **Consequence**: A permanent ban from any sort of public interaction within 113 | the community. 114 | 115 | ## Attribution 116 | 117 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], 118 | version 2.0, available at 119 | https://www.contributor-covenant.org/version/2/0/code_of_conduct.html. 120 | 121 | Community Impact Guidelines were inspired by [Mozilla's code of conduct 122 | enforcement ladder](https://github.com/mozilla/diversity). 123 | 124 | [homepage]: https://www.contributor-covenant.org 125 | 126 | For answers to common questions about this code of conduct, see the FAQ at 127 | https://www.contributor-covenant.org/faq. Translations are available at 128 | https://www.contributor-covenant.org/translations. 129 | -------------------------------------------------------------------------------- /assets/typical-architecture.excalidraw: -------------------------------------------------------------------------------- 1 | { 2 | "type": "excalidraw", 3 | "version": 2, 4 | "source": "https://excalidraw.com", 5 | "elements": [ 6 | { 7 | "type": "rectangle", 8 | "version": 772, 9 | "versionNonce": 1100773959, 10 | "isDeleted": false, 11 | "id": "isBhZDRkcIoWGbySBsLEy", 12 | "fillStyle": "hachure", 13 | "strokeWidth": 2, 14 | "strokeStyle": "solid", 15 | "roughness": 1, 16 | "opacity": 100, 17 | "angle": 0, 18 | "x": 510.0625, 19 | "y": -0.529296875, 20 | "strokeColor": "#03a9f4", 21 | "backgroundColor": "transparent", 22 | "width": 252.4587053571429, 23 | "height": 67.28515625, 24 | "seed": 298779118, 25 | "groupIds": [], 26 | "strokeSharpness": "sharp", 27 | "boundElementIds": [] 28 | }, 29 | { 30 | "type": "text", 31 | "version": 456, 32 | "versionNonce": 271872425, 33 | "isDeleted": false, 34 | "id": "j7kpflnVnuaDP-1F5MCcc", 35 | "fillStyle": "hachure", 36 | "strokeWidth": 2, 37 | "strokeStyle": "solid", 38 | "roughness": 1, 39 | "opacity": 100, 40 | "angle": 0, 41 | "x": 580.515625, 42 | "y": 15.61328125, 43 | "strokeColor": "#03a9f4", 44 | "backgroundColor": "transparent", 45 | "width": 113, 46 | "height": 35, 47 | "seed": 11834414, 48 | "groupIds": [], 49 | "strokeSharpness": "sharp", 50 | "boundElementIds": [], 51 | "fontSize": 28, 52 | "fontFamily": 1, 53 | "text": "Backend", 54 | "baseline": 25, 55 | "textAlign": "center", 56 | "verticalAlign": "top" 57 | }, 58 | { 59 | "type": "rectangle", 60 | "version": 862, 61 | "versionNonce": 281254247, 62 | "isDeleted": false, 63 | "id": "zk1Tzfs7TN7NuvV9nUrkK", 64 | "fillStyle": "hachure", 65 | "strokeWidth": 2, 66 | "strokeStyle": "solid", 67 | "roughness": 1, 68 | "opacity": 100, 69 | "angle": 0, 70 | "x": 510.0625, 71 | "y": 98.685546875, 72 | "strokeColor": "#03a9f4", 73 | "backgroundColor": "transparent", 74 | "width": 253.4743303571429, 75 | "height": 67.28515625, 76 | "seed": 1135815662, 77 | "groupIds": [], 78 | "strokeSharpness": "sharp", 79 | "boundElementIds": [ 80 | "_q_pfShbWagNPeqr2Cw4q", 81 | "CzbKjuh5LlBF8vEsdGoYs", 82 | "euFzlspcyBdei7ZjDGsTE" 83 | ] 84 | }, 85 | { 86 | "type": "text", 87 | "version": 479, 88 | "versionNonce": 32134281, 89 | "isDeleted": false, 90 | "id": "pbft6g1zEaKzjxE9qI4WH", 91 | "fillStyle": "hachure", 92 | "strokeWidth": 2, 93 | "strokeStyle": "solid", 94 | "roughness": 1, 95 | "opacity": 100, 96 | "angle": 0, 97 | "x": 563.2633928571429, 98 | "y": 114.59933035714283, 99 | "strokeColor": "#03a9f4", 100 | "backgroundColor": "transparent", 101 | "width": 152, 102 | "height": 35, 103 | "seed": 1694556846, 104 | "groupIds": [], 105 | "strokeSharpness": "sharp", 106 | "boundElementIds": [], 107 | "fontSize": 28, 108 | "fontFamily": 1, 109 | "text": "API Server", 110 | "baseline": 25, 111 | "textAlign": "center", 112 | "verticalAlign": "top" 113 | }, 114 | { 115 | "type": "rectangle", 116 | "version": 887, 117 | "versionNonce": 670684295, 118 | "isDeleted": false, 119 | "id": "G_sH-_BODgjExxHFIJUO7", 120 | "fillStyle": "hachure", 121 | "strokeWidth": 2, 122 | "strokeStyle": "solid", 123 | "roughness": 1, 124 | "opacity": 100, 125 | "angle": 0, 126 | "x": 510.14453125, 127 | "y": 199.740234375, 128 | "strokeColor": "#03a9f4", 129 | "backgroundColor": "transparent", 130 | "width": 251.515625, 131 | "height": 67.28515625, 132 | "seed": 2087476462, 133 | "groupIds": [], 134 | "strokeSharpness": "sharp", 135 | "boundElementIds": [ 136 | "P-5Se_P31c9YU_W_jiyRL", 137 | "CzbKjuh5LlBF8vEsdGoYs" 138 | ] 139 | }, 140 | { 141 | "type": "text", 142 | "version": 517, 143 | "versionNonce": 1285610345, 144 | "isDeleted": false, 145 | "id": "FWR6GQyMu_VgSTbgtdktG", 146 | "fillStyle": "hachure", 147 | "strokeWidth": 2, 148 | "strokeStyle": "solid", 149 | "roughness": 1, 150 | "opacity": 100, 151 | "angle": 0, 152 | "x": 566.3018973214286, 153 | "y": 216.32366071428567, 154 | "strokeColor": "#03a9f4", 155 | "backgroundColor": "transparent", 156 | "width": 144, 157 | "height": 35, 158 | "seed": 82743086, 159 | "groupIds": [], 160 | "strokeSharpness": "sharp", 161 | "boundElementIds": [], 162 | "fontSize": 28, 163 | "fontFamily": 1, 164 | "text": "API Client", 165 | "baseline": 25, 166 | "textAlign": "center", 167 | "verticalAlign": "top" 168 | }, 169 | { 170 | "type": "rectangle", 171 | "version": 863, 172 | "versionNonce": 1861987239, 173 | "isDeleted": false, 174 | "id": "RxupO9IzGSd0WgL0ECubS", 175 | "fillStyle": "hachure", 176 | "strokeWidth": 2, 177 | "strokeStyle": "solid", 178 | "roughness": 1, 179 | "opacity": 100, 180 | "angle": 0, 181 | "x": 510.0625, 182 | "y": 303.705078125, 183 | "strokeColor": "#03a9f4", 184 | "backgroundColor": "transparent", 185 | "width": 253.07812500000003, 186 | "height": 67.28515625, 187 | "seed": 290532466, 188 | "groupIds": [], 189 | "strokeSharpness": "sharp", 190 | "boundElementIds": [ 191 | "GNYre13yKH_YUl3IHWLJV", 192 | "f72O2kwJb9RVWZ6WUwfn-", 193 | "tcnX3h7U3Y7nCrYotIHRV", 194 | "P-5Se_P31c9YU_W_jiyRL" 195 | ] 196 | }, 197 | { 198 | "type": "text", 199 | "version": 569, 200 | "versionNonce": 1352894025, 201 | "isDeleted": false, 202 | "id": "UJ8QgwFB2cterDA5_P1XR", 203 | "fillStyle": "hachure", 204 | "strokeWidth": 2, 205 | "strokeStyle": "solid", 206 | "roughness": 1, 207 | "opacity": 100, 208 | "angle": 0, 209 | "x": 577.9274553571429, 210 | "y": 319.0608258928572, 211 | "strokeColor": "#03a9f4", 212 | "backgroundColor": "transparent", 213 | "width": 119, 214 | "height": 35, 215 | "seed": 2132201010, 216 | "groupIds": [], 217 | "strokeSharpness": "sharp", 218 | "boundElementIds": [ 219 | "uGtob-oyCnRKt3cM6Pyg_" 220 | ], 221 | "fontSize": 28, 222 | "fontFamily": 1, 223 | "text": "Frontend", 224 | "baseline": 25, 225 | "textAlign": "center", 226 | "verticalAlign": "top" 227 | } 228 | ], 229 | "appState": { 230 | "viewBackgroundColor": "#000", 231 | "gridSize": null 232 | } 233 | } --------------------------------------------------------------------------------