Skip to content
This repository has been archived by the owner on Apr 20, 2018. It is now read-only.

App Generator

Alex LaFroscia edited this page Mar 22, 2017 · 1 revision

Installing the Generator

To use this project, you'll need a few things:

  • Yarn (a much better JavaScript package manager)
  • Yeoman (a tool for running scaffolding packages, like this one!)
  • This project

Once yarn is installed, you can get the other two by doing:

yarn add --global yo generator-skatejs

Creating a new project

This generator should be run from within the directory that you want the files created in. Assuming you're using Git for version control, there would be a common pattern for starting a new project

mkdir my-cool-project
cd my-cool-project
git init
yo skatejs
git add -A
git commit -m 'Initial commit'

Creating a new project

Clone this wiki locally