From a6573b8e29618692fc8b173bae17bd18e98efbb7 Mon Sep 17 00:00:00 2001 From: Dennis Dawson Date: Thu, 29 May 2025 09:39:19 -0700 Subject: [PATCH] Update description of modular tutorials --- docs/tutorials/javascript/index.md | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/docs/tutorials/javascript/index.md b/docs/tutorials/javascript/index.md index 8972852dbc..7cf4a54430 100644 --- a/docs/tutorials/javascript/index.md +++ b/docs/tutorials/javascript/index.md @@ -1,13 +1,11 @@ --- -html: javascript.html -parent: tutorials.html top_nav_grouping: Article Types metadata: indexPage: true --- # JavaScript -You can create your own interface to try out the capabilities and support your specific business needs. These tutorials build a test harness interface to try out features of the XRP Ledger. The harness displays multiple accounts, so that you can transfer tokens from one account to the other and see the results in real time. +You can create your own interface to try out the capabilities and support your specific business needs. These tutorials use a consistent test harness interface to try out features of the XRP Ledger. Typically, the example functions involve four steps. @@ -16,9 +14,9 @@ Typically, the example functions involve four steps. - Get the state of accounts and tokens on the XRP Ledger using requests. - Disconnect from the XRP Ledger. -Each lesson builds the Token Test Harness one section at a time, with complete JavaScript and HTML code samples and a code walkthrough. You can download the source code, manipulate it in a text editor, and run it in your favorite browser. +Each lesson features complete JavaScript and HTML code samples and a code walkthrough. You can download the source code, manipulate it in a text editor, and run it in your favorite browser. -Much of this is “brute force” code that sacrifices conciseness for readability. Each example builds on the previous examples, adding a new JavaScript file and the supporting HTML UI. +Much of this is “brute force” code that sacrifices conciseness for readability. Most examples incorporate functions from earlier examples so that any new code is specific to the topic of that tutorial Once familiar with the library functions, you can build sample applications in JavaScript. We anticipate that the applications you build greatly improve upon these examples. Your feedback and contributions are most welcome.