Шукаємо front-end програміста зі знання англійської на базовому письмовому рівні. оплата. $8/hour. Requirements Development: - All of the javascript should be collected into a single file (or use require.js) - All js/css files should be minified and uglified (gulp-uglify). - Code must bee in a modular fashion - Why AMD? - Code should be in MVC style todomvc/examples/backbone_require at gh-pages · tastejs/todomvc · GitHub - Each module should contain all the necessary dependencies. (less dependencies = easier testing). Libs: - gulp - bower - phantomjs (? need browser testing) - mocha - chai - backbone (or exoskeleton) - jQuery (Only if justified!!!) Links: Unit Testing Backbone.js Applications Module code example: (function (root, factory) { if (typeof define === 'function' && define.amd) { // AMD. Register as an anonymous module. define(function (){ return factory(root); }); } else if (typeof exports === 'object') { // Node. Does not work with strict CommonJS, but // only CommonJS-like environments that support module.exports, // like Node. module.exports = factory(root); } else { factory(root); } }(this, function (root, undefined) { 'use strict'; }));