mirror of
https://github.com/hoppscotch/hoppscotch
synced 2024-11-22 15:18:35 +00:00
Trans and docs for socketio feature
This commit is contained in:
parent
14701369bd
commit
356d736f4e
@ -92,6 +92,8 @@ _Customized themes are synced with local session storage_
|
|||||||
|
|
||||||
📡 **Server Sent Events**: Receive a stream of updates from a server over a HTTP connection without resorting to polling.
|
📡 **Server Sent Events**: Receive a stream of updates from a server over a HTTP connection without resorting to polling.
|
||||||
|
|
||||||
|
🌩 **Socket.IO**: Send and Receive data with socketio server. SocketIO is popular websocket solution.
|
||||||
|
|
||||||
🔮 **GraphQL**: GraphQL is a query language for APIs and a runtime for fulfilling those queries with your existing data.
|
🔮 **GraphQL**: GraphQL is a query language for APIs and a runtime for fulfilling those queries with your existing data.
|
||||||
|
|
||||||
- Set endpoint and get schemas
|
- Set endpoint and get schemas
|
||||||
|
@ -85,7 +85,7 @@ export default {
|
|||||||
},
|
},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
url: "wss://echo.websocket.org",
|
url: "ws://",
|
||||||
connectionState: false,
|
connectionState: false,
|
||||||
io: null,
|
io: null,
|
||||||
communication: {
|
communication: {
|
||||||
|
@ -274,4 +274,6 @@ export default {
|
|||||||
paste_a_note: "Paste a note",
|
paste_a_note: "Paste a note",
|
||||||
import_from_sync: "Import from Sync",
|
import_from_sync: "Import from Sync",
|
||||||
notes: "Notes",
|
notes: "Notes",
|
||||||
|
socketio: "Socket.IO",
|
||||||
|
event_name: "Event Name",
|
||||||
}
|
}
|
||||||
|
@ -57,7 +57,7 @@ export default {
|
|||||||
{
|
{
|
||||||
name: "keywords",
|
name: "keywords",
|
||||||
content:
|
content:
|
||||||
"postwoman, postwoman chrome, postwoman online, postwoman for mac, postwoman app, postwoman for windows, postwoman google chrome, postwoman chrome app, get postwoman, postwoman web, postwoman android, postwoman app for chrome, postwoman mobile app, postwoman web app, api, request, testing, tool, rest, websocket, sse, graphql",
|
"postwoman, postwoman chrome, postwoman online, postwoman for mac, postwoman app, postwoman for windows, postwoman google chrome, postwoman chrome app, get postwoman, postwoman web, postwoman android, postwoman app for chrome, postwoman mobile app, postwoman web app, api, request, testing, tool, rest, websocket, sse, graphql, socketio",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "X-UA-Compatible",
|
name: "X-UA-Compatible",
|
||||||
@ -353,14 +353,14 @@ export default {
|
|||||||
code: "ja",
|
code: "ja",
|
||||||
name: "日本語",
|
name: "日本語",
|
||||||
iso: "ja-JP",
|
iso: "ja-JP",
|
||||||
file: "ja-JP.js"
|
file: "ja-JP.js",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
code: "ko",
|
code: "ko",
|
||||||
name: "한국어",
|
name: "한국어",
|
||||||
iso: "ko-KR",
|
iso: "ko-KR",
|
||||||
file: "ko-KR.js"
|
file: "ko-KR.js",
|
||||||
}
|
},
|
||||||
],
|
],
|
||||||
defaultLocale: "en",
|
defaultLocale: "en",
|
||||||
vueI18n: {
|
vueI18n: {
|
||||||
|
@ -112,7 +112,7 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<input id="tab-three" type="radio" name="options" />
|
<input id="tab-three" type="radio" name="options" />
|
||||||
<label for="tab-three">{{ $t("socket.io") }}</label>
|
<label for="tab-three">{{ $t("socketio") }}</label>
|
||||||
<div class="tab">
|
<div class="tab">
|
||||||
<socketio />
|
<socketio />
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
Reference in New Issue
Block a user