Quick Start Guide

The easiest way to get a scalejs project up and running is to use the yeoman generator.

Steps

  1. Install yo and the generator package generator-scalejs
    npm install -g yo generator-scalejs
    
  2. Make a new directory and cd into it.
    mkdir myproject && cd myproject
    
  3. Run the generator
    yo scalejs
    
  4. Within the myproject directory run npm start

  5. Navigate to http://localhost:3000 to view the application and you should see this page

scalejs app homepage

You can now begin developing your application with scalejs! Check out the rest of the docs for more information!