From fdbac63f466b4fd3be701d4878800d856692e26e Mon Sep 17 00:00:00 2001 From: mDuo13 Date: Fri, 20 Nov 2015 18:49:03 -0800 Subject: [PATCH] Docs: more on basic types, tx types --- docs/index.md | 52 ++++++++++++++++++++++++------------ docs/src/basictypes.md.ejs | 16 +++++++---- docs/src/boilerplate.md.ejs | 6 ++--- docs/src/transactions.md.ejs | 30 ++++++++++++++------- 4 files changed, 70 insertions(+), 34 deletions(-) diff --git a/docs/index.md b/docs/index.md index fc931f77..ee620776 100644 --- a/docs/index.md +++ b/docs/index.md @@ -108,12 +108,12 @@ If you omit the "catch" section, errors may not be visible. 1. Install [NodeJS](https://nodejs.org) and the Node Package Manager (npm). Most Linux distros have a package for NodeJS, but make sure you have version `0.12.0` or higher. 2. Use npm to install [Babel](https://babeljs.io/) globally: - npm install -g babel + `npm install -g babel` 3. Use npm to install RippleAPI: - npm install ripple-lib + `npm install ripple-lib` After you have installed ripple-lib, you can create scripts using the [boilerplate](#boilerplate) and run them using babel-node: - babel-node script.js + `babel-node script.js`