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

Parse actual information using Node.js #12

Merged
merged 1 commit into from
Jan 9, 2017
Merged
Show file tree
Hide file tree
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
23 changes: 23 additions & 0 deletions nodejs/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# SocialClub parser
## Install Node.js
Download Node.js from http://www.nodejs.org/

## Install node dependencies
```
npm install
```
By running the above CLI command from the folder containing the ```package.json``` file, a folder ```node_modules``` will be created with all the dependencies defined in ```package.json```. This folder contains modules that are necessary to run the script.

## Modify credentials
Your SocialClub username and password need to be given at the first two lines of the ```index.js``` file.

## Run the script
```
node .
```
The above CLI command will execute the ```index.js``` file and prints the user information of the user belonging to the username configured in the ```index.js``` file.

```
node . <username>
```
This CLI command executes the ```index.js``` file and prints the user information of the user belonging to the username specified in the command.
Loading