|
24 | 24 | - [🙌 Contributing](#-contributing) |
25 | 25 | - [🌎 Roadmap](#-roadmap) |
26 | 26 |
|
27 | | -Pode is a Cross-Platform framework for creating web servers to host [REST APIs](https://badgerati.github.io/Pode/Tutorials/Routes/Overview/), [Web Pages](https://badgerati.github.io/Pode/Tutorials/Routes/Examples/WebPages/), and [SMTP/TCP](https://badgerati.github.io/Pode/Servers/) Servers. Pode also allows you to render dynamic files using [`.pode`](https://badgerati.github.io/Pode/Tutorials/Views/Pode/) files, which are just embedded PowerShell, or other [Third-Party](https://badgerati.github.io/Pode/Tutorials/Views/ThirdParty/) template engines. Plus many more features, including [Azure Functions](https://badgerati.github.io/Pode/Hosting/AzureFunctions/) and [AWS Lambda](https://badgerati.github.io/Pode/Hosting/AwsLambda/) support! |
| 27 | +Pode is a Cross-Platform PowerShell framework for creating web servers to host [REST APIs](https://badgerati.github.io/Pode/Tutorials/Routes/Overview/), [Web Pages](https://badgerati.github.io/Pode/Tutorials/Routes/Examples/WebPages/), and [SMTP/TCP](https://badgerati.github.io/Pode/Servers/) Servers. Pode also allows you to render dynamic files using [`.pode`](https://badgerati.github.io/Pode/Tutorials/Views/Pode/) files, which are just embedded PowerShell, or other [Third-Party](https://badgerati.github.io/Pode/Tutorials/Views/ThirdParty/) template engines. Plus many more features, including [Azure Functions](https://badgerati.github.io/Pode/Hosting/AzureFunctions/) and [AWS Lambda](https://badgerati.github.io/Pode/Hosting/AwsLambda/) support! |
28 | 28 |
|
29 | 29 | ```powershell |
30 | | -
|
31 | 30 | Start-PodeServer -ScriptBlock { |
32 | 31 | Add-PodeEndPoint -Address localhost -port 32005 -Protocol Http |
| 32 | +
|
33 | 33 | Add-PodeRoute -Method Get -Path '/ping' -ScriptBlock { |
34 | 34 | Write-PodeJsonResponse -Value @{value = 'pong' } |
35 | 35 | } |
36 | 36 | } |
37 | 37 |
|
| 38 | +# then call "http://127.0.0.1:32005/ping" |
38 | 39 | ``` |
39 | 40 |
|
40 | 41 | See [here](https://badgerati.github.io/Pode/Getting-Started/FirstApp) for building your first app! Don't know HTML, CSS, or JavaScript? No problem! [Pode.Web](https://github.com/Badgerati/Pode.Web) is currently a work in progress, and lets you build web pages using purely PowerShell! |
@@ -82,7 +83,7 @@ Then navigate to `http://127.0.0.1:8000` in your browser. |
82 | 83 | * In-memory caching, with optional support for external providers (such as Redis) |
83 | 84 | * (Windows) Open the hosted server as a desktop application |
84 | 85 | * FileBrowsing support |
85 | | -* Localization (i18n) in Arabic, German, Spanish, France, Italian, Japanese, Korean, Polish, Portuguese, and Chinese |
| 86 | +* Localization (i18n) in Arabic, German, Spanish, France, Italian, Japanese, Polish, Chinese, and more |
86 | 87 |
|
87 | 88 | ## 📦 Install |
88 | 89 |
|
|
0 commit comments