muffin.io
v1.1.1
Published
A full stack development tool for creating modern webapps
Readme
muffin.io
Muffin is a full stack development tool for creating modern webapps. It is designed to help the developer become more productive without getting in the way.
All documentation, samples and demos are on the hompage - http://muffin.io.
Installation
Install Muffin using npm:
$ [sudo] npm install -g muffin.ioMuffin comes with a command line tool aptly named muffin.
To use Google App Engine as the backend stack, you need to install the Google App Engine SDK for Python.
To use Node.js/MongoDB as the backend stack, you need to install MongoDB. The easiest way to install MongoDB on Mac OS X is using Homebrew:
$ brew update
$ brew install mongodbQuick Start
Create a new project:
$ muffin new <project-name>This sets up a project boilerplate with only the frontend stack. To specify a server stack, you can use the --server or -s option:
$ muffin new <project-name> -s [nodejs|gae]Install dependencies:
$ cd /path/to/your/project
$ muffin installStart the development server while watching for file changes:
$ muffin watch -sNow point your browser to http://localhost:4000 and see your app in action.
License
Released under the MIT license.
