├── .eslintrc ├── .gitignore ├── Gemfile ├── README.md ├── _config.yml ├── _includes ├── docs-sidebar.html ├── footer.html ├── head.html ├── nav.html └── scripts.html ├── _layouts ├── page.html └── redirect.html ├── circle.yml ├── hosted-ledgers ├── index.md ├── plugins.js ├── streaming-client-from-before.js └── streaming-shop-from-before.js ├── http-ilp ├── client1.js ├── client2.js ├── client3.js ├── index.md ├── shop-koa.js ├── shop1.js ├── shop2.js └── shop3.js ├── index.md ├── letter-shop ├── README.md ├── client.js ├── completed │ ├── client.js │ ├── package-lock.json │ ├── package.json │ ├── pay.js │ ├── plugins.js │ └── shop.js ├── index.md ├── package-lock.json ├── package.json ├── pay.js ├── plugins.js └── shop.js ├── package.json ├── streaming-payments ├── index.md ├── shop-from-before.js ├── streaming-client1.js ├── streaming-client2.js └── streaming-shop.js └── test └── .eslintrc /.eslintrc: -------------------------------------------------------------------------------- 1 | extends: standard 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | creds.js 2 | 3 | # Logs 4 | logs 5 | *.log 6 | npm-debug.log* 7 | 8 | # Runtime data 9 | pids 10 | *.pid 11 | *.seed 12 | 13 | # Directory for instrumented libs generated by jscoverage/JSCover 14 | lib-cov 15 | 16 | # Coverage directory used by tools like istanbul 17 | coverage 18 | 19 | # nyc test coverage 20 | .nyc_output 21 | 22 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) 23 | .grunt 24 | 25 | # node-waf configuration 26 | .lock-wscript 27 | 28 | # Compiled binary addons (http://nodejs.org/api/addons.html) 29 | build/Release 30 | 31 | # Dependency directories 32 | node_modules 33 | jspm_packages 34 | 35 | # Optional npm cache directory 36 | .npm 37 | 38 | # Optional REPL history 39 | .node_repl_history 40 | 41 | # Jekyll 42 | /_site 43 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | gem 'github-pages', group: :jekyll_plugins 3 | 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Interledger tutorials 2 | 3 | This repo is available to view at https://interledger.org/tutorials/ 4 | 5 | The following tutorials are available: 6 | 7 | * [The Letter Shop](../../tree/master/letter-shop) 8 | * [Streaming Payments](../../tree/master/streaming-payments) 9 | * [Trustlines](../../tree/master/trustlines) 10 | 11 | -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- 1 | title: The Interledger Project 2 | email: info@interledger.org 3 | description: > # this means to ignore newlines until "baseurl:" 4 | Write an awesome description for your new site here. You can edit this 5 | line in _config.yml. It will appear in your document head meta (for 6 | Google search results) and in your feed.xml site description. 7 | baseurl: "/tutorials" # the subpath of your site, e.g. /blog 8 | url: "https://interledger.org" # the base hostname & protocol for your site, e.g. http://example.com 9 | twitter_username: interledger 10 | github_username: interledger 11 | interledgerjs_baseurl: https://interledgerjs.github.io/ 12 | 13 | plugins: 14 | - jemoji 15 | -------------------------------------------------------------------------------- /_includes/docs-sidebar.html: -------------------------------------------------------------------------------- 1 |
41 | -------------------------------------------------------------------------------- /_includes/footer.html: -------------------------------------------------------------------------------- 1 | 15 | -------------------------------------------------------------------------------- /_includes/head.html: -------------------------------------------------------------------------------- 1 |