Skip to content
This repository has been archived by the owner on Mar 18, 2020. It is now read-only.

Installing

Kristian Muñiz edited this page Aug 11, 2016 · 2 revisions

Assuming you’ve already installed Node.js, go to your terminal and create a directory to hold your bot's source code, and make that your working directory:

$ mkdir my-bot
$ cd my-bot

Use the npm init command to create a package.json file for your application:

$ npm init

Once you have a package.json set up, you can go ahead and install vott-messenger:

$ npm install vott-messenger --save

The --save option automatically adds vott-messenger to the dependencies list in your application's package.json file.

Useful Resources

To learn more about npm's package.json file, go to https://docs.npmjs.com/files/package.json

Clone this wiki locally