Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Git dependency and alternate install #46

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 16 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,13 @@ fixes all of this.

### Dependencies

Thor requires Node.js to be installed on your system. If you don't have Node.js
installed you can download it from http://nodejs.org or build it from the github
source repository: http://github.com/joyent/node.
Thor requires Node.js and Git to be installed on your system.
If you don't have Node.js installed you can download it from http://nodejs.org
or build it from the github source repository: http://github.com/joyent/node.
If you don't have Git install you can download and install it from
https://git-scm.com/downloads or using your operating system's package manager.

Once you have Node.js installed, you can use the bundled package manager `npm` to
Once you have Node.js and Git installed, you can use the bundled package manager `npm` to
install this module:

```
Expand All @@ -22,6 +24,16 @@ npm install -g thor

The `-g` command flag tells `npm` to install the module globally on your system.

An alternate way to install is to first clone the git package with git:
```
git clone https://github.com/observing/thor.git
```
then install with npm locally:
```
cd thor/
npm install -g .
```

### Usage

```
Expand Down