Skip to content

Latest commit

 

History

History
25 lines (21 loc) · 833 Bytes

README.md

File metadata and controls

25 lines (21 loc) · 833 Bytes

Getting Started

Install Node.js

Download node from here and check your version number afterwards. Run this in the command line:

node --version
>>> v6.7.0

Something above 6.5 is fine. (This is because of node's ES6 support.)

Get the code

  1. To get the code in this repository, run

    git clone https://github.com/rshkv/vbb-bot.git
    

    A folder named hackschool-chatbots will be created.

  2. We need some other people's code too. Go inside that folder with

    cd hackschool-chatbots
    

    and run

    npm install
    

    This has the node package manager install all the dependencies defined in package.json.