periodic.app.web-app

Periodic is an open source framework that optimizes the process used to develop new user interfaces and components for web based publications.


Keywords
CMS, CDS, Content Delivery System, Content Management System, Periodic Decoupled Framework, ui, ux, AmEx, Digital Publishing Framework
License
BSD-2-Clause
Install
npm install periodic.app.web-app@0.1.7

Documentation

Periodic Web App

Boilerplate web app

Prerequisites

You need to make sure you have nodemon and grunt installed globally first

Installing nodemon

$ npm install nodemon -g
$ npm install grunt-cli -g

Installation

$ npm install periodic.app.web-app

Starting App

Hop into the app directory (the app gets copied via a grunt task), install dependencies for the app, create a log directory, fire up the app.

$ cd periodic/app.web-app
$ npm install
$ mkdir logs
$ npm run webapp

Developing

You need to make sure you have browserify installed globally first

Installing browserify

$ npm install browserify -g

Starting app

$ cd periodic/app.web-app
$ npm run appdev

Start Developing app & JSLinting

watch for file changes for automated linting and browserify compliation, It's wise to run JSLinting while developing to catch errors on the fly

$ cd periodic/app.web-app
$ npm run watch