JSON-RPC 究竟是什么?

What exactly is JSON-RPC?

JSON-RPC到底是什么,用在正文中有什么关系editors/IDE?服务器一词如何适用于它?我已阅读维基百科文章,但我不清楚。在未连接到 Internet 的文本 editor/IDE 中,服务器一词何时与 JSON-RPC 有关?

What exactly is JSON-RPC

这是一种发送请求和接收响应的方式。 (在同一枚硬币的另一面,这是某人接收请求并发送响应的一种方式)

what is the relationship when used in text editors/IDE?

所有复杂的软件(包括文本编辑器和 IDE)都是由多个组件组成的。 JSON-RPC 是不同组件相互通信的一种方式。不过,这不是唯一的方法。

How does the term server apply to it? ... In a text editor/IDE that is not connected to the internet when is the term server has to do with JSON-RPC?

来自specification

The Client is defined as the origin of Request objects and the handler of Response objects. 
The Server is defined as the origin of Response objects and the handler of Request objects.

换句话说,"Server" 只是收到请求的人。无需互联网。