https://github.com/argyleink/core
MVC style framework built for io or node.js
https://github.com/argyleink/core
Last synced: about 1 year ago
JSON representation
MVC style framework built for io or node.js
- Host: GitHub
- URL: https://github.com/argyleink/core
- Owner: argyleink
- License: mit
- Created: 2015-03-13T03:48:55.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2015-03-16T04:17:34.000Z (over 11 years ago)
- Last Synced: 2025-04-02T13:30:39.920Z (over 1 year ago)
- Language: CSS
- Homepage: http://pogjs.com
- Size: 571 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Pog JS
[](https://gitter.im/pogjs/pog?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)
[](http://badge.fury.io/js/pog-core)
[](https://gemnasium.com/pogjs/core)
Pog is a modern MVC style framework built on top of [io.js](http://iojs.org) and [koa](http://koajs.com). It's built to be fast, simple and easy to configure, with sane defaults and flexible boilerplates to get you up and running as quickly as possible.
It's a work in progress, check back often for updates.
Full documentation will be coming soon.
#### DEPENDENCIES
Pog takes advatage of the latest ES6 updates, and requies either io.js or node.js 0.12+ with the --harmony flag.
#### INSTALL COMMAND LINE TOOL
```
$ npm install pog -g
```
#### CREATE A NEW APP
```
$ pog myapp
```
Pog uses Jade by default, but you also have the option of handlebars or nunjucks (more coming soon).
###### CREATE NEW APP WITH NUNJUCKS
```
$ pog myapp --html nunjucks
```
###### CREATE NEW APP WITH HANDLEBARS
```
$ pog myapp --html handlebars
```
#### START THE SERVER
Assuming you have io.js installed
```
$ gulp start
```
or
```
$ iojs server.js
```
or if you prefer to stick with node and have at least version 0.12 installed:
```
$ node --harmony server.js
```
## Getting Started Guide
A full getting starting guide is in the works, in the meantime, check out the docs below (still a work in progress).
## Docs
[Config](docs/config.md)
[Models](docs/models.md)