Estamos aumentando nosso time e procuramos um desenvolvedor web/js.
A vaga é para um desenvolvedor júnior part-time(30h semanais) com as seguintes características:
var gulp = require('gulp'); | |
var gutil = require('gulp-util'); | |
var bower = require('bower'); | |
var concat = require('gulp-concat'); | |
var ngAnnotate = require('gulp-ng-annotate'); | |
var sass = require('gulp-sass'); | |
var jade = require('gulp-jade'); | |
var minifyCss = require('gulp-minify-css'); | |
var browserSync = require('browser-sync').create(); | |
var uglify = require('gulp-uglify'); |
// Set up ================================= | |
var express = require('express'); | |
var app = express(); | |
// Constants ================================= | |
var PORT = 8100; | |
// Config ================================= | |
app.use(express.static(__dirname + '/www')); |
This doc describres the new structure for the files and folders, besides It's conventions and best practices.
It was decided to use a modular architecture for a gradual refactoring of the app, considering each module being a feature/scope of the app.
Motivation: