Syrup (v0.1.0-alpha)
App with sweet flavor
(Pending Documentation)
-IE > 10
-Chrome > 32
-Firefox > 29
-Opera > 23
-Safari > 7
Controlling browsers support.
if(_.nav.unsupported){
//What to do?
}
If there is any browser incompatibility please notify
Using Bower:
bower install syrup
Using Git:
git clone https://github.com/geolffreym/Syrup.git
Configuration is very simple, you just have to access the folder /config/ and edit the file init.js
You need to set the 'app_path' and 'system_path', which is responsible for establishing relative directories. The default is '/' and finally, the environment which can be either development or production.
//config
var setting = {
app_path : '/syrup/app',
system_path: '/syrup/system',
env : 'development'
};
Node JS Required
Blend files is relatively simple, you must first establish the libraries you want to use in environment.
Syrup is modular so you can create your own libraries and integrate the autoloader
//Development
exports.files = {
js: {
output: 'dist/init', //The output
src: [
'app/config/init', // Needed do not change
'system/base/init', // Needed do not change
// 'lib/Form',
// 'lib/Upload' // Add all the necessary scripts for startup
]
}
}
Then you must get packages with npm install
and finally run npm start
and you'll have a unified library and .min in folder /dist/
If you do not have the option of using node, you must manually change the settings in the /dist/init.js and include libs separately