# Generator-XJS

This is a Yeoman Generator for scaffolding an XSplit plugin using the [XSplit JS Framework](https://github.com/xjsframework/xjs).

### Installation
```shell
npm install -g bower
npm install -g yo
npm install -g generator-xjs
```

### Basic Usage
```shell
mkdir YOUR_DIR
cd YOUR_DIR
yo xjs
gulp
```

### Scaffold XJS Project with Webpack
```shell
mkdir YOUR_DIR
cd YOUR_DIR
yo xjs:webpack
webpack --watch
```