# Quickstart / Installation

This tutorial walks you through how to set up [glitter-sdk-js](https://github.com/blockved/glitter-sdk-js) for local development.

## Installing the Driver

Now you can install the Glitter Python Driver [glitter-sdk-js](https://github.com/blockved/glitter-sdk-js) using:

``` sh
    npm install glitter-sdk-js
```


## Installation Guide for Developers

1. Fork the [glitter-sdk-js](https://github.com/blockved/glitter-sdk-js) repo on GitHub.
2. Clone your fork locally and enter into the project::
``` sh
    git clone git@github.com:your_name_here/glitter-sdk-js.git
    cd glitter-sdk-js/
```
3. Create a branch for local development::
``` sh
    git checkout -b name-of-your-bugfix-or-feature
```
   Now you can make your changes locally.

4. Commit your changes and push your branch to GitHub::
``` sh
    $ git add .
    $ git commit -m "Your detailed description of your changes."
    $ git push origin name-of-your-bugfix-or-feature
```