1
0
mirror of https://github.com/labstack/echo.git synced 2025-02-05 13:15:02 +02:00
Vishal Rana 0176385654 Moved examples to recipes
Signed-off-by: Vishal Rana <vr@labstack.com>
2015-10-08 20:10:55 -07:00

28 lines
447 B
Markdown

---
title: JSONP
menu:
side:
parent: recipes
weight: 6
---
JSONP is a method that allows cross-domain server calls. You can read more about it at the JSON versus JSONP Tutorial.
### Server
`server.go`
{{< embed "jsonp/server.go" >}}
### Client
`index.html`
{{< embed "jsonp/public/index.html" >}}
### Maintainers
- [willf](https://github.com/willf)
### [Source Code](https://github.com/labstack/echo/blob/master/recipes/jsonp)