Skip to content

Instantly share code, notes, and snippets.

View shoo7830's full-sized avatar
๐Ÿ’€
Working!!!

Aria Kim shoo7830

๐Ÿ’€
Working!!!
View GitHub Profile
@shoo7830
shoo7830 / a-modern-frontend-dev.md
Created July 28, 2016 08:59 — forked from dwayne/a-modern-frontend-dev.md
Articles, tutorials and tools for modern front-end development.

Problem: What does a Modern Front-End Development Workflow Look Like?

I want to start writing libraries and large applications using the JavaScript language. However, I don't know how to setup the project and which build tools to use. What I do know is that the JavaScript community has moved way beyond using browser developer tool plugins and strategically-placed console.log() statements to debug, test, and build code.

I need help.

Below, I will keep track of articles, tutorials and tools I come across as I search for a way to bring my front-end development chops up-to-date.

The Ultimate Resource

@shoo7830
shoo7830 / Gruntfile.js
Created May 26, 2016 04:19
sample Gruntfile.js for watching and compiling less files.
'use strict';
module.exports = function (grunt) {
// load all grunt tasks
grunt.loadNpmTasks('grunt-contrib-less');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.initConfig({
watch: {
// if any .less file changes in directory "public/css/" run the "less"-task.