├── .editorconfig ├── .github ├── CONTRIBUTING.md └── FUNDING.yml ├── .gitignore ├── Chapter 1 - Basics ├── Chapter 1.1 - Introduction │ └── README.md ├── Chapter 1.2 - Prerequisites │ └── README.md ├── Chapter 1.3 - Starting to Code │ ├── README.md │ ├── config.json │ └── project1.js ├── Chapter 1.4 - TOTP │ ├── README.md │ ├── config.json │ └── project1.js ├── Chapter 1.5 - Errors │ └── README.md ├── README.md └── package.json ├── Chapter 2 - Trading ├── Chapter 2.1 - Prerequisites │ └── README.md ├── Chapter 2.2 - Handling Trade Offers │ ├── README.md │ ├── config.json │ ├── project2.js │ └── screenshots │ │ ├── console.png │ │ └── trade.png ├── Chapter 2.3 - Sending Trade Offers │ ├── README.md │ ├── config.json │ ├── project2.js │ └── screenshots │ │ ├── console.png │ │ ├── trade.png │ │ └── trade2.png ├── Chapter 2.4 - Accepting Donations │ ├── README.md │ ├── config.json │ └── project3.js ├── README.md └── package.json ├── Chapter 3 - User Interaction ├── Chapter 3.1 - Friend Requests │ ├── README.md │ ├── config.json │ └── project4.js ├── README.md └── package.json ├── Chapter 4 - Basics of Web Development ├── Chapter 4.1 - Prerequisites │ └── README.md ├── Chapter 4.2 - Base App │ ├── README.md │ └── project5.js ├── Chapter 4.3 - Templates │ ├── README.md │ ├── project5 │ │ ├── app.js │ │ └── views │ │ │ └── main.hbs │ └── screenshots │ │ └── webpage.png ├── Chapter 4.4 - Databases │ ├── README.md │ ├── project6.js │ ├── project7 │ │ ├── app.js │ │ ├── models │ │ │ └── item.js │ │ └── views │ │ │ └── main.hbs │ └── screenshots │ │ └── webpage.png ├── Chapter 4.5 - WebSockets │ ├── README.md │ ├── project8 │ │ ├── app.js │ │ └── views │ │ │ └── main.hbs │ └── screenshots │ │ └── webpage.png ├── README.md └── package.json ├── Chapter 5 - Advanced Web Development ├── Chapter 5.1 - Prerequisites │ └── README.md ├── Chapter 5.2 - Authentication │ ├── README.md │ ├── project9 │ │ ├── app.js │ │ ├── config.json │ │ └── views │ │ │ └── main.hbs │ └── screenshots │ │ └── webpage.png ├── README.md └── package.json ├── Chapter 6 - Connecting Sites and Bots ├── Chapter 6.1 - Prerequisites │ └── README.md ├── Chapter 6.2 - Getting Started │ ├── README.md │ ├── project10 │ │ ├── app.js │ │ ├── config.json │ │ ├── helpers │ │ │ └── priceUpdater.js │ │ ├── models │ │ │ ├── inventory.js │ │ │ ├── item.js │ │ │ ├── price.js │ │ │ └── user.js │ │ ├── public │ │ │ └── main.js │ │ └── views │ │ │ ├── deposit.hbs │ │ │ ├── main.hbs │ │ │ └── withdraw.hbs │ └── screenshots │ │ ├── console.png │ │ └── webpage.png ├── Chapter 6.3 - Beginning the Connection │ ├── README.md │ └── project10 │ │ ├── app.js │ │ ├── bots │ │ └── index.js │ │ ├── config.json │ │ ├── helpers │ │ └── priceUpdater.js │ │ ├── models │ │ ├── inventory.js │ │ ├── item.js │ │ ├── price.js │ │ └── user.js │ │ ├── public │ │ └── main.js │ │ └── views │ │ ├── deposit.hbs │ │ ├── main.hbs │ │ └── withdraw.hbs ├── README.md └── package.json ├── LICENSE └── README.md /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewda/node-steam-guide/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewda/node-steam-guide/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewda/node-steam-guide/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | *.me.js 4 | -------------------------------------------------------------------------------- /Chapter 1 - Basics/Chapter 1.1 - Introduction/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewda/node-steam-guide/HEAD/Chapter 1 - Basics/Chapter 1.1 - Introduction/README.md -------------------------------------------------------------------------------- /Chapter 1 - Basics/Chapter 1.2 - Prerequisites/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewda/node-steam-guide/HEAD/Chapter 1 - Basics/Chapter 1.2 - Prerequisites/README.md -------------------------------------------------------------------------------- /Chapter 1 - Basics/Chapter 1.3 - Starting to Code/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewda/node-steam-guide/HEAD/Chapter 1 - Basics/Chapter 1.3 - Starting to Code/README.md -------------------------------------------------------------------------------- /Chapter 1 - Basics/Chapter 1.3 - Starting to Code/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewda/node-steam-guide/HEAD/Chapter 1 - Basics/Chapter 1.3 - Starting to Code/config.json -------------------------------------------------------------------------------- /Chapter 1 - Basics/Chapter 1.3 - Starting to Code/project1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewda/node-steam-guide/HEAD/Chapter 1 - Basics/Chapter 1.3 - Starting to Code/project1.js -------------------------------------------------------------------------------- /Chapter 1 - Basics/Chapter 1.4 - TOTP/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewda/node-steam-guide/HEAD/Chapter 1 - Basics/Chapter 1.4 - TOTP/README.md -------------------------------------------------------------------------------- /Chapter 1 - Basics/Chapter 1.4 - TOTP/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewda/node-steam-guide/HEAD/Chapter 1 - Basics/Chapter 1.4 - TOTP/config.json -------------------------------------------------------------------------------- /Chapter 1 - Basics/Chapter 1.4 - TOTP/project1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewda/node-steam-guide/HEAD/Chapter 1 - Basics/Chapter 1.4 - TOTP/project1.js -------------------------------------------------------------------------------- /Chapter 1 - Basics/Chapter 1.5 - Errors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewda/node-steam-guide/HEAD/Chapter 1 - Basics/Chapter 1.5 - Errors/README.md -------------------------------------------------------------------------------- /Chapter 1 - Basics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewda/node-steam-guide/HEAD/Chapter 1 - Basics/README.md -------------------------------------------------------------------------------- /Chapter 1 - Basics/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewda/node-steam-guide/HEAD/Chapter 1 - Basics/package.json -------------------------------------------------------------------------------- /Chapter 2 - Trading/Chapter 2.1 - Prerequisites/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewda/node-steam-guide/HEAD/Chapter 2 - Trading/Chapter 2.1 - Prerequisites/README.md -------------------------------------------------------------------------------- /Chapter 2 - Trading/Chapter 2.2 - Handling Trade Offers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewda/node-steam-guide/HEAD/Chapter 2 - Trading/Chapter 2.2 - Handling Trade Offers/README.md -------------------------------------------------------------------------------- /Chapter 2 - Trading/Chapter 2.2 - Handling Trade Offers/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewda/node-steam-guide/HEAD/Chapter 2 - Trading/Chapter 2.2 - Handling Trade Offers/config.json -------------------------------------------------------------------------------- /Chapter 2 - Trading/Chapter 2.2 - Handling Trade Offers/project2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewda/node-steam-guide/HEAD/Chapter 2 - Trading/Chapter 2.2 - Handling Trade Offers/project2.js -------------------------------------------------------------------------------- /Chapter 2 - Trading/Chapter 2.2 - Handling Trade Offers/screenshots/console.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewda/node-steam-guide/HEAD/Chapter 2 - Trading/Chapter 2.2 - Handling Trade Offers/screenshots/console.png -------------------------------------------------------------------------------- /Chapter 2 - Trading/Chapter 2.2 - Handling Trade Offers/screenshots/trade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewda/node-steam-guide/HEAD/Chapter 2 - Trading/Chapter 2.2 - Handling Trade Offers/screenshots/trade.png -------------------------------------------------------------------------------- /Chapter 2 - Trading/Chapter 2.3 - Sending Trade Offers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewda/node-steam-guide/HEAD/Chapter 2 - Trading/Chapter 2.3 - Sending Trade Offers/README.md -------------------------------------------------------------------------------- /Chapter 2 - Trading/Chapter 2.3 - Sending Trade Offers/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewda/node-steam-guide/HEAD/Chapter 2 - Trading/Chapter 2.3 - Sending Trade Offers/config.json -------------------------------------------------------------------------------- /Chapter 2 - Trading/Chapter 2.3 - Sending Trade Offers/project2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewda/node-steam-guide/HEAD/Chapter 2 - Trading/Chapter 2.3 - Sending Trade Offers/project2.js -------------------------------------------------------------------------------- /Chapter 2 - Trading/Chapter 2.3 - Sending Trade Offers/screenshots/console.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewda/node-steam-guide/HEAD/Chapter 2 - Trading/Chapter 2.3 - Sending Trade Offers/screenshots/console.png -------------------------------------------------------------------------------- /Chapter 2 - Trading/Chapter 2.3 - Sending Trade Offers/screenshots/trade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewda/node-steam-guide/HEAD/Chapter 2 - Trading/Chapter 2.3 - Sending Trade Offers/screenshots/trade.png -------------------------------------------------------------------------------- /Chapter 2 - Trading/Chapter 2.3 - Sending Trade Offers/screenshots/trade2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewda/node-steam-guide/HEAD/Chapter 2 - Trading/Chapter 2.3 - Sending Trade Offers/screenshots/trade2.png -------------------------------------------------------------------------------- /Chapter 2 - Trading/Chapter 2.4 - Accepting Donations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewda/node-steam-guide/HEAD/Chapter 2 - Trading/Chapter 2.4 - Accepting Donations/README.md -------------------------------------------------------------------------------- /Chapter 2 - Trading/Chapter 2.4 - Accepting Donations/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewda/node-steam-guide/HEAD/Chapter 2 - Trading/Chapter 2.4 - Accepting Donations/config.json -------------------------------------------------------------------------------- /Chapter 2 - Trading/Chapter 2.4 - Accepting Donations/project3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewda/node-steam-guide/HEAD/Chapter 2 - Trading/Chapter 2.4 - Accepting Donations/project3.js -------------------------------------------------------------------------------- /Chapter 2 - Trading/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewda/node-steam-guide/HEAD/Chapter 2 - Trading/README.md -------------------------------------------------------------------------------- /Chapter 2 - Trading/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewda/node-steam-guide/HEAD/Chapter 2 - Trading/package.json -------------------------------------------------------------------------------- /Chapter 3 - User Interaction/Chapter 3.1 - Friend Requests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewda/node-steam-guide/HEAD/Chapter 3 - User Interaction/Chapter 3.1 - Friend Requests/README.md -------------------------------------------------------------------------------- /Chapter 3 - User Interaction/Chapter 3.1 - Friend Requests/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewda/node-steam-guide/HEAD/Chapter 3 - User Interaction/Chapter 3.1 - Friend Requests/config.json -------------------------------------------------------------------------------- /Chapter 3 - User Interaction/Chapter 3.1 - Friend Requests/project4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewda/node-steam-guide/HEAD/Chapter 3 - User Interaction/Chapter 3.1 - Friend Requests/project4.js -------------------------------------------------------------------------------- /Chapter 3 - User Interaction/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewda/node-steam-guide/HEAD/Chapter 3 - User Interaction/README.md -------------------------------------------------------------------------------- /Chapter 3 - User Interaction/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewda/node-steam-guide/HEAD/Chapter 3 - User Interaction/package.json -------------------------------------------------------------------------------- /Chapter 4 - Basics of Web Development/Chapter 4.1 - Prerequisites/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewda/node-steam-guide/HEAD/Chapter 4 - Basics of Web Development/Chapter 4.1 - Prerequisites/README.md -------------------------------------------------------------------------------- /Chapter 4 - Basics of Web Development/Chapter 4.2 - Base App/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewda/node-steam-guide/HEAD/Chapter 4 - Basics of Web Development/Chapter 4.2 - Base App/README.md -------------------------------------------------------------------------------- /Chapter 4 - Basics of Web Development/Chapter 4.2 - Base App/project5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewda/node-steam-guide/HEAD/Chapter 4 - Basics of Web Development/Chapter 4.2 - Base App/project5.js -------------------------------------------------------------------------------- /Chapter 4 - Basics of Web Development/Chapter 4.3 - Templates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewda/node-steam-guide/HEAD/Chapter 4 - Basics of Web Development/Chapter 4.3 - Templates/README.md -------------------------------------------------------------------------------- /Chapter 4 - Basics of Web Development/Chapter 4.3 - Templates/project5/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewda/node-steam-guide/HEAD/Chapter 4 - Basics of Web Development/Chapter 4.3 - Templates/project5/app.js -------------------------------------------------------------------------------- /Chapter 4 - Basics of Web Development/Chapter 4.3 - Templates/project5/views/main.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewda/node-steam-guide/HEAD/Chapter 4 - Basics of Web Development/Chapter 4.3 - Templates/project5/views/main.hbs -------------------------------------------------------------------------------- /Chapter 4 - Basics of Web Development/Chapter 4.3 - Templates/screenshots/webpage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewda/node-steam-guide/HEAD/Chapter 4 - Basics of Web Development/Chapter 4.3 - Templates/screenshots/webpage.png -------------------------------------------------------------------------------- /Chapter 4 - Basics of Web Development/Chapter 4.4 - Databases/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewda/node-steam-guide/HEAD/Chapter 4 - Basics of Web Development/Chapter 4.4 - Databases/README.md -------------------------------------------------------------------------------- /Chapter 4 - Basics of Web Development/Chapter 4.4 - Databases/project6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewda/node-steam-guide/HEAD/Chapter 4 - Basics of Web Development/Chapter 4.4 - Databases/project6.js -------------------------------------------------------------------------------- /Chapter 4 - Basics of Web Development/Chapter 4.4 - Databases/project7/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewda/node-steam-guide/HEAD/Chapter 4 - Basics of Web Development/Chapter 4.4 - Databases/project7/app.js -------------------------------------------------------------------------------- /Chapter 4 - Basics of Web Development/Chapter 4.4 - Databases/project7/models/item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewda/node-steam-guide/HEAD/Chapter 4 - Basics of Web Development/Chapter 4.4 - Databases/project7/models/item.js -------------------------------------------------------------------------------- /Chapter 4 - Basics of Web Development/Chapter 4.4 - Databases/project7/views/main.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewda/node-steam-guide/HEAD/Chapter 4 - Basics of Web Development/Chapter 4.4 - Databases/project7/views/main.hbs -------------------------------------------------------------------------------- /Chapter 4 - Basics of Web Development/Chapter 4.4 - Databases/screenshots/webpage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewda/node-steam-guide/HEAD/Chapter 4 - Basics of Web Development/Chapter 4.4 - Databases/screenshots/webpage.png -------------------------------------------------------------------------------- /Chapter 4 - Basics of Web Development/Chapter 4.5 - WebSockets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewda/node-steam-guide/HEAD/Chapter 4 - Basics of Web Development/Chapter 4.5 - WebSockets/README.md -------------------------------------------------------------------------------- /Chapter 4 - Basics of Web Development/Chapter 4.5 - WebSockets/project8/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewda/node-steam-guide/HEAD/Chapter 4 - Basics of Web Development/Chapter 4.5 - WebSockets/project8/app.js -------------------------------------------------------------------------------- /Chapter 4 - Basics of Web Development/Chapter 4.5 - WebSockets/project8/views/main.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewda/node-steam-guide/HEAD/Chapter 4 - Basics of Web Development/Chapter 4.5 - WebSockets/project8/views/main.hbs -------------------------------------------------------------------------------- /Chapter 4 - Basics of Web Development/Chapter 4.5 - WebSockets/screenshots/webpage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewda/node-steam-guide/HEAD/Chapter 4 - Basics of Web Development/Chapter 4.5 - WebSockets/screenshots/webpage.png -------------------------------------------------------------------------------- /Chapter 4 - Basics of Web Development/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewda/node-steam-guide/HEAD/Chapter 4 - Basics of Web Development/README.md -------------------------------------------------------------------------------- /Chapter 4 - Basics of Web Development/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewda/node-steam-guide/HEAD/Chapter 4 - Basics of Web Development/package.json -------------------------------------------------------------------------------- /Chapter 5 - Advanced Web Development/Chapter 5.1 - Prerequisites/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewda/node-steam-guide/HEAD/Chapter 5 - Advanced Web Development/Chapter 5.1 - Prerequisites/README.md -------------------------------------------------------------------------------- /Chapter 5 - Advanced Web Development/Chapter 5.2 - Authentication/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewda/node-steam-guide/HEAD/Chapter 5 - Advanced Web Development/Chapter 5.2 - Authentication/README.md -------------------------------------------------------------------------------- /Chapter 5 - Advanced Web Development/Chapter 5.2 - Authentication/project9/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewda/node-steam-guide/HEAD/Chapter 5 - Advanced Web Development/Chapter 5.2 - Authentication/project9/app.js -------------------------------------------------------------------------------- /Chapter 5 - Advanced Web Development/Chapter 5.2 - Authentication/project9/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewda/node-steam-guide/HEAD/Chapter 5 - Advanced Web Development/Chapter 5.2 - Authentication/project9/config.json -------------------------------------------------------------------------------- /Chapter 5 - Advanced Web Development/Chapter 5.2 - Authentication/project9/views/main.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewda/node-steam-guide/HEAD/Chapter 5 - Advanced Web Development/Chapter 5.2 - Authentication/project9/views/main.hbs -------------------------------------------------------------------------------- /Chapter 5 - Advanced Web Development/Chapter 5.2 - Authentication/screenshots/webpage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewda/node-steam-guide/HEAD/Chapter 5 - Advanced Web Development/Chapter 5.2 - Authentication/screenshots/webpage.png -------------------------------------------------------------------------------- /Chapter 5 - Advanced Web Development/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewda/node-steam-guide/HEAD/Chapter 5 - Advanced Web Development/README.md -------------------------------------------------------------------------------- /Chapter 5 - Advanced Web Development/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewda/node-steam-guide/HEAD/Chapter 5 - Advanced Web Development/package.json -------------------------------------------------------------------------------- /Chapter 6 - Connecting Sites and Bots/Chapter 6.1 - Prerequisites/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewda/node-steam-guide/HEAD/Chapter 6 - Connecting Sites and Bots/Chapter 6.1 - Prerequisites/README.md -------------------------------------------------------------------------------- /Chapter 6 - Connecting Sites and Bots/Chapter 6.2 - Getting Started/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewda/node-steam-guide/HEAD/Chapter 6 - Connecting Sites and Bots/Chapter 6.2 - Getting Started/README.md -------------------------------------------------------------------------------- /Chapter 6 - Connecting Sites and Bots/Chapter 6.2 - Getting Started/project10/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewda/node-steam-guide/HEAD/Chapter 6 - Connecting Sites and Bots/Chapter 6.2 - Getting Started/project10/app.js -------------------------------------------------------------------------------- /Chapter 6 - Connecting Sites and Bots/Chapter 6.2 - Getting Started/project10/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewda/node-steam-guide/HEAD/Chapter 6 - Connecting Sites and Bots/Chapter 6.2 - Getting Started/project10/config.json -------------------------------------------------------------------------------- /Chapter 6 - Connecting Sites and Bots/Chapter 6.2 - Getting Started/project10/helpers/priceUpdater.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewda/node-steam-guide/HEAD/Chapter 6 - Connecting Sites and Bots/Chapter 6.2 - Getting Started/project10/helpers/priceUpdater.js -------------------------------------------------------------------------------- /Chapter 6 - Connecting Sites and Bots/Chapter 6.2 - Getting Started/project10/models/inventory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewda/node-steam-guide/HEAD/Chapter 6 - Connecting Sites and Bots/Chapter 6.2 - Getting Started/project10/models/inventory.js -------------------------------------------------------------------------------- /Chapter 6 - Connecting Sites and Bots/Chapter 6.2 - Getting Started/project10/models/item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewda/node-steam-guide/HEAD/Chapter 6 - Connecting Sites and Bots/Chapter 6.2 - Getting Started/project10/models/item.js -------------------------------------------------------------------------------- /Chapter 6 - Connecting Sites and Bots/Chapter 6.2 - Getting Started/project10/models/price.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewda/node-steam-guide/HEAD/Chapter 6 - Connecting Sites and Bots/Chapter 6.2 - Getting Started/project10/models/price.js -------------------------------------------------------------------------------- /Chapter 6 - Connecting Sites and Bots/Chapter 6.2 - Getting Started/project10/models/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewda/node-steam-guide/HEAD/Chapter 6 - Connecting Sites and Bots/Chapter 6.2 - Getting Started/project10/models/user.js -------------------------------------------------------------------------------- /Chapter 6 - Connecting Sites and Bots/Chapter 6.2 - Getting Started/project10/public/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewda/node-steam-guide/HEAD/Chapter 6 - Connecting Sites and Bots/Chapter 6.2 - Getting Started/project10/public/main.js -------------------------------------------------------------------------------- /Chapter 6 - Connecting Sites and Bots/Chapter 6.2 - Getting Started/project10/views/deposit.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewda/node-steam-guide/HEAD/Chapter 6 - Connecting Sites and Bots/Chapter 6.2 - Getting Started/project10/views/deposit.hbs -------------------------------------------------------------------------------- /Chapter 6 - Connecting Sites and Bots/Chapter 6.2 - Getting Started/project10/views/main.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewda/node-steam-guide/HEAD/Chapter 6 - Connecting Sites and Bots/Chapter 6.2 - Getting Started/project10/views/main.hbs -------------------------------------------------------------------------------- /Chapter 6 - Connecting Sites and Bots/Chapter 6.2 - Getting Started/project10/views/withdraw.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewda/node-steam-guide/HEAD/Chapter 6 - Connecting Sites and Bots/Chapter 6.2 - Getting Started/project10/views/withdraw.hbs -------------------------------------------------------------------------------- /Chapter 6 - Connecting Sites and Bots/Chapter 6.2 - Getting Started/screenshots/console.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewda/node-steam-guide/HEAD/Chapter 6 - Connecting Sites and Bots/Chapter 6.2 - Getting Started/screenshots/console.png -------------------------------------------------------------------------------- /Chapter 6 - Connecting Sites and Bots/Chapter 6.2 - Getting Started/screenshots/webpage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewda/node-steam-guide/HEAD/Chapter 6 - Connecting Sites and Bots/Chapter 6.2 - Getting Started/screenshots/webpage.png -------------------------------------------------------------------------------- /Chapter 6 - Connecting Sites and Bots/Chapter 6.3 - Beginning the Connection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewda/node-steam-guide/HEAD/Chapter 6 - Connecting Sites and Bots/Chapter 6.3 - Beginning the Connection/README.md -------------------------------------------------------------------------------- /Chapter 6 - Connecting Sites and Bots/Chapter 6.3 - Beginning the Connection/project10/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewda/node-steam-guide/HEAD/Chapter 6 - Connecting Sites and Bots/Chapter 6.3 - Beginning the Connection/project10/app.js -------------------------------------------------------------------------------- /Chapter 6 - Connecting Sites and Bots/Chapter 6.3 - Beginning the Connection/project10/bots/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewda/node-steam-guide/HEAD/Chapter 6 - Connecting Sites and Bots/Chapter 6.3 - Beginning the Connection/project10/bots/index.js -------------------------------------------------------------------------------- /Chapter 6 - Connecting Sites and Bots/Chapter 6.3 - Beginning the Connection/project10/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewda/node-steam-guide/HEAD/Chapter 6 - Connecting Sites and Bots/Chapter 6.3 - Beginning the Connection/project10/config.json -------------------------------------------------------------------------------- /Chapter 6 - Connecting Sites and Bots/Chapter 6.3 - Beginning the Connection/project10/helpers/priceUpdater.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewda/node-steam-guide/HEAD/Chapter 6 - Connecting Sites and Bots/Chapter 6.3 - Beginning the Connection/project10/helpers/priceUpdater.js -------------------------------------------------------------------------------- /Chapter 6 - Connecting Sites and Bots/Chapter 6.3 - Beginning the Connection/project10/models/inventory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewda/node-steam-guide/HEAD/Chapter 6 - Connecting Sites and Bots/Chapter 6.3 - Beginning the Connection/project10/models/inventory.js -------------------------------------------------------------------------------- /Chapter 6 - Connecting Sites and Bots/Chapter 6.3 - Beginning the Connection/project10/models/item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewda/node-steam-guide/HEAD/Chapter 6 - Connecting Sites and Bots/Chapter 6.3 - Beginning the Connection/project10/models/item.js -------------------------------------------------------------------------------- /Chapter 6 - Connecting Sites and Bots/Chapter 6.3 - Beginning the Connection/project10/models/price.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewda/node-steam-guide/HEAD/Chapter 6 - Connecting Sites and Bots/Chapter 6.3 - Beginning the Connection/project10/models/price.js -------------------------------------------------------------------------------- /Chapter 6 - Connecting Sites and Bots/Chapter 6.3 - Beginning the Connection/project10/models/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewda/node-steam-guide/HEAD/Chapter 6 - Connecting Sites and Bots/Chapter 6.3 - Beginning the Connection/project10/models/user.js -------------------------------------------------------------------------------- /Chapter 6 - Connecting Sites and Bots/Chapter 6.3 - Beginning the Connection/project10/public/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewda/node-steam-guide/HEAD/Chapter 6 - Connecting Sites and Bots/Chapter 6.3 - Beginning the Connection/project10/public/main.js -------------------------------------------------------------------------------- /Chapter 6 - Connecting Sites and Bots/Chapter 6.3 - Beginning the Connection/project10/views/deposit.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewda/node-steam-guide/HEAD/Chapter 6 - Connecting Sites and Bots/Chapter 6.3 - Beginning the Connection/project10/views/deposit.hbs -------------------------------------------------------------------------------- /Chapter 6 - Connecting Sites and Bots/Chapter 6.3 - Beginning the Connection/project10/views/main.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewda/node-steam-guide/HEAD/Chapter 6 - Connecting Sites and Bots/Chapter 6.3 - Beginning the Connection/project10/views/main.hbs -------------------------------------------------------------------------------- /Chapter 6 - Connecting Sites and Bots/Chapter 6.3 - Beginning the Connection/project10/views/withdraw.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewda/node-steam-guide/HEAD/Chapter 6 - Connecting Sites and Bots/Chapter 6.3 - Beginning the Connection/project10/views/withdraw.hbs -------------------------------------------------------------------------------- /Chapter 6 - Connecting Sites and Bots/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewda/node-steam-guide/HEAD/Chapter 6 - Connecting Sites and Bots/README.md -------------------------------------------------------------------------------- /Chapter 6 - Connecting Sites and Bots/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewda/node-steam-guide/HEAD/Chapter 6 - Connecting Sites and Bots/package.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewda/node-steam-guide/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewda/node-steam-guide/HEAD/README.md --------------------------------------------------------------------------------