You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc/developers-guide/app-development.md
+66Lines changed: 66 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,9 @@ slug: "app-development"
4
4
excerpt: "Build a lightning application using Core Lightning APIs."
5
5
hidden: false
6
6
---
7
+
8
+
## Interacting with CLN Node
9
+
7
10
There are several ways to connect and interact with a Core Lightning node in order to build a lightning app or integrate lightning in your application.
8
11
9
12
- Using **[JSON-RPC commands](doc:json-rpc)** if you're building an application in the same system as the CLN node.
@@ -13,6 +16,69 @@ There are several ways to connect and interact with a Core Lightning node in ord
13
16
- Using **[WSS Proxy](doc:wss-proxy)** to connect to a CLN node over web secure socket proxy.
14
17
- Third-party libraries that offer **[JSON over HTTPS](doc:third-party-libraries#json-over-https)** or **[GraphQL](doc:third-party-libraries#graphql)** (deprecated) frameworks to connect to a CLN node remotely.
15
18
19
+
## CLN connection URIs
20
+
21
+
This section outlines the standard URI formats for connecting to Core Lightning (CLN) nodes via different protocols.
0 commit comments