All Projects → fex-team → Yog

fex-team / Yog

Licence: bsd-3-clause
Yog framework

Programming Languages

javascript
184084 projects - #8 most used programming language

yog

NPM version Dependencies Status

An express-based Node.js web application bootstrapping module, extends kraken-js.

install

on Linux/Unix

$ npm install yog

on Windows

open a cmd

npm install yog

use

.
├── app.js
├── config  # some `map.json` and `config.json`
├── controllers
├── lib
├── models
├── public # static
└── views # views or template

app.js

var yog = require('yog');
var app = require('express')();
var PORT = 4000;

app.use(yog()).listen(PORT, function () {
    console.log('Listening *:' + PORT);
});

detail see project fex-team/yog-app

others

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].