UNPKG

fastack

Version:

Command line interface for deploying and interacting with Fastack

40 lines (30 loc) 1.25 kB
# Fastack ![npm version](https://img.shields.io/npm/v/fastack.svg) Fastack is a zero-configuration development tool that makes developing client-side-only apps easy. Run `$ fastack` in your app directory to automatically enable the following features. ## Features ### Easy module loading - Every file in your app directory is implicitly loaded into your Fastack application. Just drop `main.coffee`, `styles.sass` or `my-code.js` somewhere into your app directory and Fastack will load it. - Need to install a dependency? `fastack:my-app $ install jquery` will install modules from JSPM ![Package management](docs/img/install.gif) ### Pre-compiler support - SASS - CoffeeScript ### Auto reload on file changes Hot module replacement implementation coming soon. See below. ![Package management](docs/img/auto-reload.gif) ## Quickstart ``` $ npm install -g fastack ``` Fastack is an immersive command line application. Running `$ fastack` will drop you into a new prompt with a number of sub-commands available. Run `help` in the Fastack prompt for more information. ``` $ mkdir my-app $ cd my-app $ fastack fastack:my-app $ init ``` ## Coming Soon - Hot code reload - Application export - Fastack deploy - LESS support - TypeScript support